diff options
| author | cedricnjanga | 2017-12-21 12:50:17 +0100 |
|---|---|---|
| committer | cedricnjanga | 2017-12-21 14:00:25 +0100 |
| commit | b2d3ce3c589c2dcf2c37426f8e47eaca1e9dcf3f (patch) | |
| tree | 9861ed43fa23ab15d835f1e42927e23549973a1d /db/schema.rb | |
| parent | 7e3966023e991125fc3fd1633e49688ef376632d (diff) | |
| download | chouette-core-b2d3ce3c589c2dcf2c37426f8e47eaca1e9dcf3f.tar.bz2 | |
Commit schema
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index f5532ec57..9469a36d4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -419,8 +419,13 @@ ActiveRecord::Schema.define(version: 20171220164059) do t.string "type", limit: 255 t.integer "parent_id", limit: 8 t.string "parent_type" +<<<<<<< HEAD t.integer "current_step", default: 0 t.integer "total_steps", default: 0 +======= + t.integer "current_step", default: 0 + t.integer "total_steps", default: 0 +>>>>>>> Commit schema t.datetime "notified_parent_at" t.string "creator" end @@ -606,6 +611,20 @@ ActiveRecord::Schema.define(version: 20171220164059) do add_index "pt_links", ["objectid"], name: "pt_links_objectid_key", unique: true, using: :btree + create_table "purchase_windows", id: :bigserial, force: :cascade do |t| + t.string "name" + t.string "color" + t.daterange "date_ranges", array: true + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "objectid" + t.string "checksum" + t.text "checksum_source" + t.integer "referential_id", limit: 8 + end + + add_index "purchase_windows", ["referential_id"], name: "index_purchase_windows_on_referential_id", using: :btree + create_table "referential_clonings", id: :bigserial, force: :cascade do |t| t.string "status" t.datetime "started_at" |
