gitlabhq/db/migrate/20111225202855_create_deploy_keys.rb
2011-12-29 21:44:16 +02:00

13 lines
304 B
Ruby

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