class AddCategoryIdToBlogs < ActiveRecord::Migration[6.0]
  def change
    add_reference :blogs, :category, null: false, after: :id,
      foreign_key: { to_table: :blog_categories }
  end
end
