11 lines
221 B
Ruby
11 lines
221 B
Ruby
class CreateLineStockPArticles < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :line_stock_p_articles do |t|
|
|
t.belongs_to :p_article
|
|
t.belongs_to :line_stock
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|