blob: 80e179597eda73c492d18429c3028809d859abd8 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# This migration comes from refinery_blog (originally 20110803223523)
class AddUserIdToBlogPosts < ActiveRecord::Migration
def change
add_column Refinery::Blog::Post.table_name, :user_id, :integer
end
end
|