CreateResponseScales   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 3 1
1
# frozen_string_literal: true
2
3
require './lib/shared_migration'
4
5
# Creates table to hold response scales
6
class CreateResponseScales < ActiveRecord::Migration[5.1]
7
  include SharedMigration
8
9
  def change
10
    create_name_table table_name: :response_scales
11
  end
12
end
13