11 lines
218 B
Ruby
11 lines
218 B
Ruby
class CreateUsers < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :name
|
|
t.string :email
|
|
t.string :password_digest
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|