Files
gitlink-forgeplus/db/migrate/20200725025555_create_waitlists.rb
2020-07-25 10:57:45 +08:00

13 lines
244 B
Ruby

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