class AddOwnerIdToSites < ActiveRecord::Migration[5.0] def change add_column :jobshop_sites, :owner_id, :uuid add_foreign_key :jobshop_sites, :jobshop_users, column: "owner_id", on_delete: :restrict end end