summaryrefslogtreecommitdiff
path: root/db/migrate/20130812143708_add_import_url_to_project.rb
blob: d2bdfe1894ed5b1cb5ed279ef3565b0ab17ef1a3 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddImportUrlToProject < ActiveRecord::Migration
  def change
    add_column :projects, :import_url, :string
  end
end