diff options
author | Ariejan de Vroom <ariejan@ariejan.net> | 2011-12-14 17:38:52 +0100 |
---|---|---|
committer | Ariejan de Vroom <ariejan@ariejan.net> | 2011-12-14 17:38:52 +0100 |
commit | edab46e9fa5f568b1423c0021e81d30453d7dc1e (patch) | |
tree | 8efba8b082a534e1a069f4566d55d6117951e6ba /db/migrate | |
parent | 56fc53e8d870b70ca66332daeb6da39ab0eb5ce7 (diff) | |
download | gitlab-ce-edab46e9fa5f568b1423c0021e81d30453d7dc1e.tar.gz |
Added web hooks functionality
This commit includes:
* Projects can have zero or more WebHooks.
* The PostReceive job will ask a project to execute any web hooks defined for that project.
* WebHook has a URL, we post Github-compatible JSON to that URL.
* Failure to execute a WebHook will be silently ignored.
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20111214091851_create_web_hooks.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20111214091851_create_web_hooks.rb b/db/migrate/20111214091851_create_web_hooks.rb new file mode 100644 index 00000000000..c6ba89c10e1 --- /dev/null +++ b/db/migrate/20111214091851_create_web_hooks.rb @@ -0,0 +1,9 @@ +class CreateWebHooks < ActiveRecord::Migration + def change + create_table :web_hooks do |t| + t.string :url + t.integer :project_id + t.timestamps + end + end +end |