This commit is contained in:
Julius 2013-02-25 10:29:47 +01:00
parent 8f15cfb446
commit 5dc3fc30ad
12 changed files with 33 additions and 215 deletions

View file

@ -1,18 +0,0 @@
class CreateStockArticleSelections < ActiveRecord::Migration
def up
create_table :stock_article_selections do |t|
t.integer :created_by_user_id
t.timestamps
end
create_table :stock_article_selections_stock_articles, :id => false do |t|
t.integer :stock_article_id
t.integer :stock_article_selection_id
end
end
def down
drop_table :stock_article_selections
drop_table :stock_article_selections_stock_articles
end
end