Newer
Older
Website-backend / db / migrate / 20220403081640_create_users.rb
@lukas lukas on 3 Apr 2022 240 bytes initial commit
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
    end
  end
end