18 lines
418 B
Ruby
18 lines
418 B
Ruby
class CreateCastingCalls < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :casting_calls do |t|
|
|
t.references :project
|
|
t.string :title
|
|
t.string :user_email
|
|
t.text :description
|
|
t.text :project_description
|
|
t.text :interview_instructions
|
|
t.text :interview_requirements
|
|
t.text :questions
|
|
t.datetime :cancelled_at
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|