coton_app/db/migrate/20190704151810_create_p_import_stocks.rb
2019-07-07 16:47:15 +02:00

10 lines
177 B
Ruby

class CreatePImportStocks < ActiveRecord::Migration
def change
create_table :p_import_stocks do |t|
t.string :name
t.timestamps null: false
end
end
end