Sha256: 14bcf6efb8ab2c6cb8d2b8646282c0a8f8c120e109640334bc99c98496bebcaf
Contents?: true
Size: 429 Bytes
Versions: 8
Compression:
Stored size: 429 Bytes
Contents
# This migration comes from tb_blog (originally 20150116194722) class DropSpudPostSites < ActiveRecord::Migration def up drop_table :spud_post_sites end def down create_table :spud_post_sites do |t| t.integer :spud_post_id, null: false t.integer :spud_site_id, null: false t.timestamps end add_index :spud_post_sites, :spud_post_id add_index :spud_post_sites, :spud_site_id end end
Version data entries
8 entries across 8 versions & 1 rubygems