Merge branch 'master' into deploy_keys

Conflicts:
	app/models/project.rb
This commit is contained in:
miks 2011-12-29 21:46:21 +02:00
commit f8ad4d2b42
35 changed files with 556 additions and 90 deletions

View file

@ -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