aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/4_create_seo_meta_for_blog.rb
diff options
context:
space:
mode:
authorUģis Ozols <ugis.ozolss@gmail.com>2011-07-27 13:46:24 +0300
committerUģis Ozols <ugis.ozolss@gmail.com>2011-07-27 13:46:24 +0300
commit3fa8937b95a4d90000ad1be9c588424052136455 (patch)
tree07e61cd13bd88a76d13c3d759475d67d088d5f6e /db/migrate/4_create_seo_meta_for_blog.rb
parente5db679226bac7ef8ddd568c40f52addd52d7a8a (diff)
downloadrefinerycms-blog-3fa8937b95a4d90000ad1be9c588424052136455.tar.gz
refinerycms-blog-3fa8937b95a4d90000ad1be9c588424052136455.tar.bz2
refinerycms-blog-3fa8937b95a4d90000ad1be9c588424052136455.zip
Rails 3.1 - wip.
Diffstat (limited to 'db/migrate/4_create_seo_meta_for_blog.rb')
-rw-r--r--db/migrate/4_create_seo_meta_for_blog.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/4_create_seo_meta_for_blog.rb b/db/migrate/4_create_seo_meta_for_blog.rb
index baf81a4..b1c3c31 100644
--- a/db/migrate/4_create_seo_meta_for_blog.rb
+++ b/db/migrate/4_create_seo_meta_for_blog.rb
@@ -1,6 +1,6 @@
class CreateSeoMetaForBlog < ActiveRecord::Migration
- def self.up
+ def up
unless ::SeoMetum.table_exists?
create_table ::SeoMetum.table_name do |t|
t.integer :seo_meta_id
@@ -18,7 +18,7 @@ class CreateSeoMetaForBlog < ActiveRecord::Migration
end
end
- def self.down
+ def down
# can't drop the table because someone else might be using it.
end