CreateInvitations   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 10
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 8 1
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