main
1class CreateNeighbourhoods < ActiveRecord::Migration
2 def change
3 create_table :neighbourhoods do |t|
4 t.string :name
5 t.string :status
6
7 t.timestamps
8 end
9 end
10end