summaryrefslogtreecommitdiff
path: root/db/migrate/20090207133449_add_page_translation_table.rb
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-02-19 21:45:49 +0100
committerhukl <contact@smyck.org>2009-02-19 21:45:49 +0100
commit9ebd7c278ce14e261a45fcb06c798ede7a7ba885 (patch)
tree39fe0bfc68514b9743f7e57c9b82d2184fabd9a1 /db/migrate/20090207133449_add_page_translation_table.rb
parent0b8cfc272d883e7865461d8ce05cd5c6aabec90e (diff)
got the whole globalize system wrong. everything
is in a translation table now. therefor merging the two separate migrations into on meaningful
Diffstat (limited to 'db/migrate/20090207133449_add_page_translation_table.rb')
-rw-r--r--db/migrate/20090207133449_add_page_translation_table.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/db/migrate/20090207133449_add_page_translation_table.rb b/db/migrate/20090207133449_add_page_translation_table.rb
deleted file mode 100644
index 50c65e1a..00000000
--- a/db/migrate/20090207133449_add_page_translation_table.rb
+++ /dev/null
@@ -1,8 +0,0 @@
1class AddPageTranslationTable < ActiveRecord::Migration
2 def self.up
3 Page.create_translation_table! :title => :string, :abstract => :text, :body => :text
4 end
5 def self.down
6 Page.drop_translation_table!
7 end
8end