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

20170322013926_create_container_image.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c494f2a56c7baacbdb3b59eae92a8dae6f642446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateContainerImage < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :container_images do |t|
      t.integer :project_id
      t.string :name
      t.string :path
    end
  end
end