aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/6_add_custom_url_field_to_blog_posts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/6_add_custom_url_field_to_blog_posts.rb')
-rw-r--r--db/migrate/6_add_custom_url_field_to_blog_posts.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/6_add_custom_url_field_to_blog_posts.rb b/db/migrate/6_add_custom_url_field_to_blog_posts.rb
new file mode 100644
index 0000000..5a8901e
--- /dev/null
+++ b/db/migrate/6_add_custom_url_field_to_blog_posts.rb
@@ -0,0 +1,9 @@
+class AddCustomUrlFieldToBlogPosts < ActiveRecord::Migration
+ def self.up
+ add_column :blog_posts, :custom_url, :string
+ end
+
+ def self.down
+ remove_column :blog_posts, :custom_url
+ end
+end