blob: 805ba7b3319a345d7d2169c2f755e53b1425020d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.string :name
t.string :email
t.timestamps
end
end
def self.down
drop_table :users
end
end
|