GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

CreateInvitations.change()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
dl 0
loc 8
rs 10
c 1
b 0
f 0
1
# frozen_string_literal: true
2
3
class CreateInvitations < ActiveRecord::Migration[5.0]
4
  def change
5
    create_table :invitations do |t|
6
      t.string "email", null: false
7
      t.string "provider", null: false
8
      t.string "invite_token"
9
      t.timestamps
10
    end
11
  end
12
end
13