socialforge/db/migrate/20140318021747_create_schoo...

13 lines
186 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.string :city
end
end
end