12 lines
229 B
Ruby
12 lines
229 B
Ruby
class CreateUsers < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :name
|
|
t.string :status
|
|
t.string :email
|
|
t.string :password_digest
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|