Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150417121913_create_project_import_data.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c78f5fde85e0598ff39cc508f2c0d4af5020501b (plain)
1
2
3
4
5
6
7
8
class CreateProjectImportData < ActiveRecord::Migration
  def change
    create_table :project_import_data do |t|
      t.references :project
      t.text :data
    end
  end
end