gitlabhq/db/migrate/20110916162511_add_key_titl...

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