This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/db/migrate/20211103085623_create_line_stock_p_articles.rb

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