From ac7a6f6636912635835ff73320ded4ad1cc73746 Mon Sep 17 00:00:00 2001 From: Joe Sak Date: Fri, 11 Mar 2011 12:58:58 -0600 Subject: Acts as taggable installed --- db/migrate/3_acts_as_taggable_on_migration.rb | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 db/migrate/3_acts_as_taggable_on_migration.rb (limited to 'db') 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 -- cgit v1.2.3