coton_app/db/migrate/20180118211206_create_articleindexs_contents.rb
2018-12-15 14:06:53 +01:00

11 lines
222 B
Ruby

class CreateArticleindexsContents < ActiveRecord::Migration
def change
create_table :articleindexs_contents do |t|
t.references :category
t.string :style
t.timestamps null: false
end
end
end