Newer
Older
Website-backend / db / migrate / 20220403081640_create_users.rb
@lukas lukas on 9 Apr 2022 287 bytes add quotes for admins
class CreateUsers < ActiveRecord::Migration[7.0]
  def change
    create_table :users do |t|
      t.string :uuid
      t.string :username
      t.string :publicSalt
      t.string :secretSalt
      t.string :passwordHash
      t.boolean :isAdmin
      t.string :quote
    end
  end
end