gitlabhq/db/migrate/20110916162511_add_key_title_to_key.rb
2011-10-09 00:36:38 +03:00

8 lines
181 B
Ruby

class AddKeyTitleToKey < ActiveRecord::Migration
def change
add_column :keys, :key, :text
add_column :keys, :title, :string
remove_column :keys, :project_id
end
end