Files
nairobi/db/migrate/20171220010000_add_author_to_related_content.rb
2017-12-20 02:36:13 +01:00

6 lines
136 B
Ruby

class AddAuthorToRelatedContent < ActiveRecord::Migration
def change
add_column :related_contents, :author_id, :integer
end
end