blob: 0ed65c172e86e760ed5ca25d578af22db604b5eb (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | class CreateChouetteFacilityFeature < ActiveRecord::Migration
  def up
    create_table :facilities_features, :id => false, :force => true do |t|
      t.integer  "facility_id", :limit => 8
      t.integer  "choice_code"
    end
  end
  def down
    drop_table :facilities_features 
  end
end
 |