11 lines
176 B
Ruby
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
|