blob: 6187655aaf13df1d6de80383c06449a17a7e871d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateCreationCategoryJoinTable < ActiveRecord::Migration
def self.up
create_table :creations_categories, :id => false do |t|
t.integer :creation_id
t.integer :category_id
end
end
def self.down
drop_table :creations_categories
end
end
|