vedia/db/migrate/20250321234644_create_users.rb

9 lines
177 B
Ruby

class CreateUsers < ActiveRecord::Migration[7.2]
def change
create_table :users do |t|
t.string :email
t.string :password
t.timestamps
end
end
end