forked from Gitlink/forgeplus
create waitlist
This commit is contained in:
parent
98176f839d
commit
94ad4ce56c
|
@ -0,0 +1,2 @@
|
|||
class Waitlist < ApplicationRecord
|
||||
end
|
|
@ -0,0 +1,10 @@
|
|||
class CreateWaitlists < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :waitlists do |t|
|
||||
t.integer :applicant_id
|
||||
t.integer :reviewer_id
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Waitlist, type: :model do
|
||||
pending "add some examples to (or delete) #{__FILE__}"
|
||||
end
|
Loading…
Reference in New Issue