diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-04-07 16:02:13 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-04-07 16:19:11 +0200 |
commit | 21a7aed9a7330382300bc93b8927609e65ee6390 (patch) | |
tree | e5aec1003032a91e43e4eb8af61ec65e47e2ce7e /db | |
parent | 03088552549ed1631bb16c1bf3d0bef3613ec793 (diff) | |
download | gitlab-ce-21a7aed9a7330382300bc93b8927609e65ee6390.tar.gz |
Update tests to cover trigger schedule
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 16f3f293079..b74aebc8305 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: 20170406115029) do +ActiveRecord::Schema.define(version: 20170407122426) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -311,6 +311,8 @@ ActiveRecord::Schema.define(version: 20170406115029) do t.string "cron" t.string "cron_timezone" t.datetime "next_run_at" + t.string "ref" + t.boolean "active" end add_index "ci_trigger_schedules", ["next_run_at"], name: "index_ci_trigger_schedules_on_next_run_at", using: :btree |