mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 05:15:53 +10:00
13 lines
224 B
Ruby
13 lines
224 B
Ruby
class CreateUsers < ActiveRecord::Migration
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :email
|
|
t.string :name
|
|
t.string :sex
|
|
t.string :avatar
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|