diff options
| author | Robert Dober | 2017-11-13 11:25:53 +0100 |
|---|---|---|
| committer | GitHub | 2017-11-13 11:25:53 +0100 |
| commit | f74240182d95fd43f4aabc14b6560158dd276b21 (patch) | |
| tree | 7d8bf80d0bccd285b31a32b90cb7755d6a905b88 /db/schema.rb | |
| parent | 2569bb6a1b0eb633e3bd34340212c450ca9c6ff8 (diff) | |
| parent | bc0964d3be07943ee3f68978a7a6be142cb12e41 (diff) | |
| download | chouette-core-f74240182d95fd43f4aabc14b6560158dd276b21.tar.bz2 | |
Merge pull request #115 from af83/4953-compliance_check_resources--change-type-column-to-resource_type
compliance_check_resources: Rename `type` column to `resource_type`
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index cab058eb7..b6dad4ca7 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: 20171110130416) do +ActiveRecord::Schema.define(version: 20171113101005) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -174,7 +174,7 @@ ActiveRecord::Schema.define(version: 20171110130416) do create_table "compliance_check_resources", id: :bigserial, force: :cascade do |t| t.string "status" t.string "name" - t.string "type" + t.string "resource_type" t.string "reference" t.hstore "metrics" t.datetime "created_at", null: false |
