socialforge/db/migrate/20140320015156_create_schoo...

11 lines
176 B
Ruby
Raw Normal View History

2014-03-18 15:19:31 +08:00
class CreateSchools < ActiveRecord::Migration
def change
create_table :schools do |t|
t.string :name
t.string :province
t.timestamps
2014-03-18 15:19:31 +08:00
end
end
end