diff options
author | Joe Sak <joe@joesak.com> | 2011-03-11 12:58:58 -0600 |
---|---|---|
committer | Joe Sak <joe@joesak.com> | 2011-03-11 12:58:58 -0600 |
commit | ac7a6f6636912635835ff73320ded4ad1cc73746 (patch) | |
tree | 42166d90ee393bc448cd93d3d4bf9bd892dc6f51 /db | |
parent | bd2802161ad8c7014a38ee5d0dbc52f515cd7011 (diff) | |
download | refinerycms-blog-ac7a6f6636912635835ff73320ded4ad1cc73746.tar.gz refinerycms-blog-ac7a6f6636912635835ff73320ded4ad1cc73746.tar.bz2 refinerycms-blog-ac7a6f6636912635835ff73320ded4ad1cc73746.zip |
Acts as taggable installed
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/3_acts_as_taggable_on_migration.rb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/db/migrate/3_acts_as_taggable_on_migration.rb b/db/migrate/3_acts_as_taggable_on_migration.rb new file mode 100644 index 0000000..1661061 --- /dev/null +++ b/db/migrate/3_acts_as_taggable_on_migration.rb @@ -0,0 +1,28 @@ +class ActsAsTaggableOnMigration < ActiveRecord::Migration + def self.up + create_table :tags do |t| + t.string :name + end + + create_table :taggings do |t| + t.references :tag + + # 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.string :context + + t.datetime :created_at + end + + add_index :taggings, :tag_id + add_index :taggings, [:taggable_id, :taggable_type, :context] + end + + def self.down + drop_table :taggings + drop_table :tags + end +end |