mirror of
https://github.com/kingomarnajjar/curly-happiness.git
synced 2026-07-26 06:37:18 +10:00
8 lines
137 B
Ruby
8 lines
137 B
Ruby
class Users < ActiveRecord::Migration[5.1]
|
|
def change
|
|
create_table :users do |t|
|
|
t.name
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|