mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-11 22:06:58 +10:00
11 lines
169 B
Ruby
11 lines
169 B
Ruby
class CreateUsers < ActiveRecord::Migration
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :email
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|