Sha256: dfbbaaad6af4603721cbd5dc5b716a75cbeb8492e9543b0a9b90e81a1102a9a2
Contents?: true
Size: 255 Bytes
Versions: 32
Compression:
Stored size: 255 Bytes
Contents
class CreatePostCategories < ActiveRecord::Migration def self.up create_table :post_categories do |t| t.integer :post_id t.integer :category_id t.timestamps end end def self.down drop_table :post_categories end end
Version data entries
32 entries across 32 versions & 1 rubygems