summaryrefslogtreecommitdiff
path: root/db/migrate/20141223135007_add_import_data_to_project_table.rb
blob: 9c8a483e4d5fa15aa2a6a439939258c48a02443d (plain)
1
2
3
4
5
6
7
8
9
# rubocop:disable all
class AddImportDataToProjectTable < ActiveRecord::Migration
  def change
    add_column :projects, :import_type, :string
    add_column :projects, :import_source, :string

    add_column :users, :github_access_token, :string
  end
end