Test Setup Failed
Push — master ( 480572...f90cae )
by Steven
01:51
created

CreateDataMigrations.change()   A

Complexity

Conditions 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
1
# frozen_string_literal: true
2
3
# Create table to hold non-destructive data migrations
4
class CreateDataMigrations < ActiveRecord::Migration[5.2]
5
  def change
6
    create_table :data_migrations do |t|
7
      t.string :version
8
    end
9
  end
10
end
11