summaryrefslogtreecommitdiff
path: root/db/migrate/20160831214002_create_project_features.rb
blob: e1e61c3a4a22d4de1d357801ebe7b4e6bbd9cac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# rubocop:disable Migration/Timestamps
class CreateProjectFeatures < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    create_table :project_features do |t|
      t.belongs_to :project, index: true
      t.integer  :merge_requests_access_level
      t.integer  :issues_access_level
      t.integer  :wiki_access_level
      t.integer  :snippets_access_level
      t.integer  :builds_access_level

      t.timestamps null: true
    end
  end
end