13 lines
314 B
Ruby
13 lines
314 B
Ruby
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
|