blob: cfd4944bbbe7639443808cff5ab7fc587b25df1c (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CreateUsers < ActiveRecord::Migration[7.1]
def change
create_table :users do |t|
t.string :username, null: false, index: { unique: true }
t.string :password_digest
t.timestamps
end
end
end
|