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

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

  DOWNTIME = false

  def change
    create_table :boards do |t|
      t.references :project, index: true, foreign_key: true, null: false

      t.timestamps null: false
    end
  end
end