create passedlist
This commit is contained in:
parent
94ad4ce56c
commit
769bf2b90e
|
@ -0,0 +1,2 @@
|
||||||
|
class PassedWaitlist < ApplicationRecord
|
||||||
|
end
|
|
@ -0,0 +1,12 @@
|
||||||
|
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
|
|
@ -0,0 +1,5 @@
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe PassedWaitlist, type: :model do
|
||||||
|
pending "add some examples to (or delete) #{__FILE__}"
|
||||||
|
end
|
Loading…
Reference in New Issue