summaryrefslogtreecommitdiff
path: root/db/migrate/20170525174156_create_feature_tables.rb
blob: a083c89c85f76d1477a39b3fa90e9691f27be1c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class CreateFeatureTables < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def self.up
    create_table :features do |t|
      t.string :key, null: false
      t.timestamps null: false
    end
    add_index :features, :key, unique: true

    create_table :feature_gates do |t|
      t.string :feature_key, null: false
      t.string :key, null: false
      t.string :value
      t.timestamps null: false
    end
    add_index :feature_gates, [:feature_key, :key, :value], unique: true
  end

  def self.down
    drop_table :feature_gates
    drop_table :features
  end
end