Files
old-holivud2/db/migrate/20200701121237_create_casting_call_interviews.rb
Senad Uka da8e187430 Cast me
2020-07-15 11:57:21 +02:00

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