socialforge/db/migrate/20140320015156_create_schoo...

11 lines
176 B
Ruby

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