aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20110803223524_acts_as_taggable_on_migration.rb
diff options
context:
space:
mode:
authorUģis Ozols <ugis@ugisozols.com>2013-07-13 13:41:41 -0700
committerUģis Ozols <ugis@ugisozols.com>2013-07-13 13:41:41 -0700
commit48950c119297dc6c99edfe8d1c99eb7a77dc9496 (patch)
tree742dab40d319fea3d0909bce9f56ad36be98ead3 /db/migrate/20110803223524_acts_as_taggable_on_migration.rb
parent6c14fbc20c8dece121b7569b7a5a0bd3c497fd57 (diff)
parentccd0f3b7ec1d47dcce017389087ac6d20f709f93 (diff)
downloadrefinerycms-blog-48950c119297dc6c99edfe8d1c99eb7a77dc9496.tar.gz
refinerycms-blog-48950c119297dc6c99edfe8d1c99eb7a77dc9496.tar.bz2
refinerycms-blog-48950c119297dc6c99edfe8d1c99eb7a77dc9496.zip
Merge pull request #339 from refinery/revert_f906ef024ee39c31148edb49c6511f007735ce5a
Revert f906ef0 but maintain table name improvements
Diffstat (limited to 'db/migrate/20110803223524_acts_as_taggable_on_migration.rb')
-rw-r--r--db/migrate/20110803223524_acts_as_taggable_on_migration.rb26
1 files changed, 12 insertions, 14 deletions
diff --git a/db/migrate/20110803223524_acts_as_taggable_on_migration.rb b/db/migrate/20110803223524_acts_as_taggable_on_migration.rb
index 49a6ca2..812daf4 100644
--- a/db/migrate/20110803223524_acts_as_taggable_on_migration.rb
+++ b/db/migrate/20110803223524_acts_as_taggable_on_migration.rb
@@ -2,25 +2,23 @@ class ActsAsTaggableOnMigration < ActiveRecord::Migration
def up
create_table :tags do |t|
t.string :name
- end unless table_exists?(:tags)
-
- unless table_exists?(:taggings)
- create_table :taggings do |t|
- t.references :tag
+ end
- # You should make sure that the column created is
- # long enough to store the required class names.
- t.references :taggable, :polymorphic => true
- t.references :tagger, :polymorphic => true
+ create_table :taggings do |t|
+ t.references :tag
- t.string :context
+ # You should make sure that the column created is
+ # long enough to store the required class names.
+ t.references :taggable, :polymorphic => true
+ t.references :tagger, :polymorphic => true
- t.datetime :created_at
- end
+ t.string :context
- add_index :taggings, :tag_id
- add_index :taggings, [:taggable_id, :taggable_type, :context]
+ t.datetime :created_at
end
+
+ add_index :taggings, :tag_id
+ add_index :taggings, [:taggable_id, :taggable_type, :context]
end
def down