summaryrefslogtreecommitdiff
path: root/db/migrate/20150417121913_create_project_import_data.rb
blob: fc357cbacc8d62a38be67e666468e2011cc43f08 (plain)
1
2
3
4
5
6
7
8
9
# rubocop:disable all
class CreateProjectImportData < ActiveRecord::Migration
  def change
    create_table :project_import_data do |t|
      t.references :project
      t.text :data
    end
  end
end