Sha256: fdb134c717c901696822e089c2829d05c28cfee5f10453e13508207b0af3fc60
Contents?: true
Size: 372 Bytes
Versions: 12
Compression:
Stored size: 372 Bytes
Contents
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
12 entries across 12 versions & 1 rubygems