Class: CreatePostCategoriesPosts

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/templates/db/migrate/create_post_categories_posts.rb

Class Method Summary collapse

Class Method Details

.downObject



9
10
11
# File 'lib/generators/templates/db/migrate/create_post_categories_posts.rb', line 9

def self.down
  drop_table :post_categories_posts
end

.upObject



2
3
4
5
6
7
# File 'lib/generators/templates/db/migrate/create_post_categories_posts.rb', line 2

def self.up
  create_table :post_categories_posts, :id => false, :force => true do |t|
    t.integer :post_id
    t.integer :post_category_id
  end
end