gitlabhq/db/migrate/20111225202855_create_deploy_keys.rb

13 lines
304 B
Ruby
Raw Normal View History

2011-12-29 20:44:16 +01:00
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