Sha256: 4a6e21b9c07da62f101a9ff79805fdbbc08a4e4930a006139c0d832ac78b7a0f
Contents?: true
Size: 473 Bytes
Versions: 19
Compression:
Stored size: 473 Bytes
Contents
class CreatePostCategories < ActiveRecord::Migration def up create_table "post_categories" do |t| t.string "title" t.integer "list_order", :default => 999 t.datetime "created_at" t.datetime "updated_at" end create_table "post_categories_posts", :id => false do |t| t.integer "post_category_id" t.integer "post_id" end end def down drop_table :post_categories drop_table :post_categories_posts end end
Version data entries
19 entries across 19 versions & 1 rubygems