forgeplus/db/migrate/20200725025657_create_passe...

13 lines
257 B
Ruby

class CreatePassedWaitlists < ActiveRecord::Migration[5.2]
def change
create_table :passed_waitlists do |t|
t.string :applicant_id
t.string :integer
t.string :reviewer_id
t.string :integer
t.timestamps
end
end
end