diff options
author | Gabriel Mazetto <brodock@gmail.com> | 2017-05-03 04:36:13 +0200 |
---|---|---|
committer | Gabriel Mazetto <brodock@gmail.com> | 2017-05-12 23:26:48 +0100 |
commit | f661980904f718440cc700b7d1f38ea8bf0e5480 (patch) | |
tree | 7933eee3b85e6af5da9db8223b6d870d8395926f /db | |
parent | 8b17fb61b61b1f9707428c2333db2de29c4d3bcf (diff) | |
download | gitlab-ce-f661980904f718440cc700b7d1f38ea8bf0e5480.tar.gz |
Added repository_update hook
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170503023315_add_repository_update_events_to_web_hooks.rb | 15 | ||||
-rw-r--r-- | db/schema.rb | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/db/migrate/20170503023315_add_repository_update_events_to_web_hooks.rb b/db/migrate/20170503023315_add_repository_update_events_to_web_hooks.rb new file mode 100644 index 00000000000..0faea87a962 --- /dev/null +++ b/db/migrate/20170503023315_add_repository_update_events_to_web_hooks.rb @@ -0,0 +1,15 @@ +class AddRepositoryUpdateEventsToWebHooks < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + disable_ddl_transaction! + + def up + add_column_with_default :web_hooks, :repository_update_events, :boolean, default: false, allow_null: false + end + + def down + remove_column :web_hooks, :repository_update_events + end +end diff --git a/db/schema.rb b/db/schema.rb index 60077ffd812..65eaccf766a 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1404,6 +1404,7 @@ ActiveRecord::Schema.define(version: 20170508190732) do t.string "token" t.boolean "pipeline_events", default: false, null: false t.boolean "confidential_issues_events", default: false, null: false + t.boolean "repository_update_events", default: false, null: false end add_index "web_hooks", ["project_id"], name: "index_web_hooks_on_project_id", using: :btree |