OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/modules/webhooks/db/migrate/20171218205557_add_webhooks.rb

24 lines
658 B

class AddWebhooks < ActiveRecord::Migration[5.0]
def change
create_table :webhooks_webhooks do |t|
t.string :name
t.text :url
t.text :description, null: false
t.string :secret, null: true
t.boolean :enabled, null: false
t.boolean :all_projects, null: false
t.timestamps
end
create_table :webhooks_events do |t|
t.string :name
t.references :webhooks_webhook, index: true, foreign_key: true
end
create_table :webhooks_projects do |t|
t.references :project, index: true, foreign_key: true
t.references :webhooks_webhook, index: true, foreign_key: true
end
end
end