Service model and service hook
This commit is contained in:
parent
be1dc5544a
commit
c3b074acab
7 changed files with 97 additions and 0 deletions
12
db/migrate/20121119170638_create_services.rb
Normal file
12
db/migrate/20121119170638_create_services.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
class CreateServices < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :services do |t|
|
||||
t.string :type
|
||||
t.string :title
|
||||
t.string :token
|
||||
t.integer :project_id, null: false
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
5
db/migrate/20121120051432_add_service_id_to_web_hook.rb
Normal file
5
db/migrate/20121120051432_add_service_id_to_web_hook.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddServiceIdToWebHook < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :web_hooks, :service_id, :integer, null: true
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue