Service model and service hook

This commit is contained in:
Dmitriy Zaporozhets 2012-11-19 21:14:05 +03:00
parent be1dc5544a
commit c3b074acab
7 changed files with 97 additions and 0 deletions

View 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

View file

@ -0,0 +1,5 @@
class AddServiceIdToWebHook < ActiveRecord::Migration
def change
add_column :web_hooks, :service_id, :integer, null: true
end
end