class CreateCastingCallInterviews < ActiveRecord::Migration[6.0] def change create_table :casting_call_interviews do |t| t.references :casting_call, foreign_key: true t.string :performer_name t.string :zoom_meeting_url t.datetime :interview_date t.timestamps end end end