diff options
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/db/schema.rb b/db/schema.rb index 91ffdd60c..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: 20171002080526) do +ActiveRecord::Schema.define(version: 20171003133042) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -194,6 +194,11 @@ ActiveRecord::Schema.define(version: 20171002080526) do t.string "parent_type" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.string "current_step_id" + t.float "current_step_progress" + t.string "name" + t.datetime "started_at" + t.datetime "ended_at" end add_index "compliance_check_sets", ["compliance_control_set_id"], name: "index_compliance_check_sets_on_compliance_control_set_id", using: :btree @@ -205,7 +210,7 @@ ActiveRecord::Schema.define(version: 20171002080526) do t.integer "compliance_check_set_id" t.integer "compliance_check_block_id" t.string "type" - t.json "control_attributes" + t.hstore "control_attributes" t.string "name" t.string "code" t.integer "criticity" @@ -240,7 +245,7 @@ ActiveRecord::Schema.define(version: 20171002080526) do create_table "compliance_controls", id: :bigserial, force: :cascade do |t| t.integer "compliance_control_set_id" t.string "type" - t.json "control_attributes" + t.hstore "control_attributes" t.string "name" t.string "code" t.string "criticity" @@ -402,9 +407,9 @@ ActiveRecord::Schema.define(version: 20171002080526) do t.string "type" t.integer "parent_id", limit: 8 t.string "parent_type" - t.datetime "notified_parent_at" t.integer "current_step", default: 0 t.integer "total_steps", default: 0 + t.datetime "notified_parent_at" t.string "creator" end |
