summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorhukl <hukl@eight.local>2009-02-02 23:46:46 +0100
committerhukl <hukl@eight.local>2009-02-02 23:46:46 +0100
commit1bbeefe805efba28ef9c237a1c27f3f1ce1d5dc0 (patch)
treeaf9103e8e23b097a930f6fa6930dca470d657043 /db
parent1c8bcc58d410db6d7eb5f1629813f08f78f47fa1 (diff)
refactored the whole tagging thing. now using
acts_as_taggable_on_steroids instead of a homebrew solution
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20090201211159_create_flags.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20090201211159_create_flags.rb b/db/migrate/20090201211159_create_flags.rb
deleted file mode 100644
index 3b9da43..0000000
--- a/db/migrate/20090201211159_create_flags.rb
+++ /dev/null
@@ -1,13 +0,0 @@
1class CreateFlags < ActiveRecord::Migration
2 def self.up
3 create_table :flags do |t|
4 t.string :name
5
6 t.timestamps
7 end
8 end
9
10 def self.down
11 drop_table :flags
12 end
13end