Sha256: 6c2fcc938c77019eec1ba4bfd671c6a85cbeaa1ffe442993e94f553764b0b695

Contents?: true

Size: 225 Bytes

Versions: 2

Compression:

Stored size: 225 Bytes

Contents

class DeleteJoinPostsTags < ActiveRecord::Migration
  def up
    drop_table :monologue_posts_tags
  end

  def down
    create_table :monologue_posts_tags, :id=>false do |t|
      t.integer :post_id,:tag_id
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
monologue-0.2.0 db/migrate/20120612015727_delete_join_posts_tags.rb
monologue-0.2.0.beta3 db/migrate/20120612015727_delete_join_posts_tags.rb