gitlabhq/db/migrate/20111231111825_add_project_id_to_key.rb

7 lines
191 B
Ruby
Raw Normal View History

2011-12-31 15:24:10 +01:00
class AddProjectIdToKey < ActiveRecord::Migration
def change
add_column :keys, :project_id, :integer, :null => true
change_column :keys, :user_id, :integer, :null => true
end
end