create passedlist

This commit is contained in:
wyx 2020-07-24 17:51:14 +08:00
parent 94ad4ce56c
commit 769bf2b90e
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,2 @@
class PassedWaitlist < ApplicationRecord
end

View File

@ -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

View File

@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe PassedWaitlist, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end