10 lines
188 B
Ruby
10 lines
188 B
Ruby
class CreateUsers < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :username
|
|
t.string :password_digest
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|