diff options
| -rw-r--r-- | db/migrate/20171003133042_remove_string_to_compliance_check_set.rb | 5 | ||||
| -rw-r--r-- | db/schema.rb | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/db/migrate/20171003133042_remove_string_to_compliance_check_set.rb b/db/migrate/20171003133042_remove_string_to_compliance_check_set.rb new file mode 100644 index 000000000..5c0ad0526 --- /dev/null +++ b/db/migrate/20171003133042_remove_string_to_compliance_check_set.rb @@ -0,0 +1,5 @@ +class RemoveStringToComplianceCheckSet < ActiveRecord::Migration + def change + remove_column :compliance_check_sets, :string, :string + end +end diff --git a/db/schema.rb b/db/schema.rb index db0687c1f..4a1ad3749 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20171003130549) do +ActiveRecord::Schema.define(version: 20171003133042) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -195,7 +195,6 @@ ActiveRecord::Schema.define(version: 20171003130549) do t.datetime "created_at", null: false t.datetime "updated_at", null: false t.string "current_step_id" - t.string "string" t.float "current_step_progress" t.string "name" t.datetime "started_at" |
