Initial deploy_key feature commit
This commit is contained in:
parent
53ce00f74a
commit
723104c45f
16 changed files with 222 additions and 1 deletions
12
db/migrate/20111225202855_create_deploy_keys.rb
Normal file
12
db/migrate/20111225202855_create_deploy_keys.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
class CreateDeployKeys < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :deploy_keys do |t|
|
||||
t.integer "project_id", :null => false
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.text "key"
|
||||
t.string "title"
|
||||
t.string "identifier"
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue