puzzle-scoreboard/db/migrate/20250312182830_create_users.rb
sto 50280ce389
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
Initial app
2025-03-14 15:36:05 +01:00

12 lines
270 B
Ruby

class CreateUsers < ActiveRecord::Migration[8.0]
def change
create_table :users do |t|
t.string :email_address, null: false
t.string :password_digest, null: false
t.timestamps
end
add_index :users, :email_address, unique: true
end
end