socialforge/db/migrate/20140318021747_create_schoo...

13 lines
186 B
Ruby

class CreateSchools < ActiveRecord::Migration
def change
create_table :schools do |t|
t.string :name
t.string :province
t.string :city
end
end
end