diff options
author | Philip Arndt <parndt@gmail.com> | 2011-03-04 11:54:12 +1300 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2011-03-04 11:54:12 +1300 |
commit | 234a7d74d57084a78e51cc52861a81f7d0748a6d (patch) | |
tree | 6552dfac3f45057f4f617573df26f2af0687e71e /db/migrate/migration_number_add_user_id_to_blog_posts.rb | |
parent | 1e6190b58c66fda23b6666e46f2a65198841a06f (diff) | |
download | refinerycms-blog-234a7d74d57084a78e51cc52861a81f7d0748a6d.tar.gz refinerycms-blog-234a7d74d57084a78e51cc52861a81f7d0748a6d.tar.bz2 refinerycms-blog-234a7d74d57084a78e51cc52861a81f7d0748a6d.zip |
Moved most of the code toward EngineInstaller.
Diffstat (limited to 'db/migrate/migration_number_add_user_id_to_blog_posts.rb')
-rw-r--r-- | db/migrate/migration_number_add_user_id_to_blog_posts.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/migration_number_add_user_id_to_blog_posts.rb b/db/migrate/migration_number_add_user_id_to_blog_posts.rb new file mode 100644 index 0000000..cd62524 --- /dev/null +++ b/db/migrate/migration_number_add_user_id_to_blog_posts.rb @@ -0,0 +1,11 @@ +class AddUserIdToBlogPosts < ActiveRecord::Migration + + def self.up + add_column :blog_posts, :user_id, :integer + end + + def self.down + remove_column :blog_posts, :user_id + end + +end
\ No newline at end of file |