|
10 | 10 | # |
11 | 11 | # It's strongly recommended that you check this file into your version control system. |
12 | 12 |
|
13 | | -ActiveRecord::Schema.define(version: 2019_12_12_043041) do |
| 13 | +ActiveRecord::Schema.define(version: 2020_04_01_183732) do |
14 | 14 |
|
15 | 15 | # These are extensions that must be enabled in order to support this database |
16 | 16 | enable_extension "plpgsql" |
|
62 | 62 | t.index ["build_id"], name: "index_file_reviews_on_build_id" |
63 | 63 | end |
64 | 64 |
|
65 | | - create_table "memberships", id: :serial, force: :cascade do |t| |
| 65 | + create_table "flipper_features", force: :cascade do |t| |
| 66 | + t.string "key", null: false |
| 67 | + t.datetime "created_at", precision: 6, null: false |
| 68 | + t.datetime "updated_at", precision: 6, null: false |
| 69 | + t.index ["key"], name: "index_flipper_features_on_key", unique: true |
| 70 | + end |
| 71 | + |
| 72 | + create_table "flipper_gates", force: :cascade do |t| |
| 73 | + t.string "feature_key", null: false |
| 74 | + t.string "key", null: false |
| 75 | + t.string "value" |
| 76 | + t.datetime "created_at", precision: 6, null: false |
| 77 | + t.datetime "updated_at", precision: 6, null: false |
| 78 | + t.index ["feature_key", "key", "value"], name: "index_flipper_gates_on_feature_key_and_key_and_value", unique: true |
| 79 | + end |
| 80 | + |
| 81 | + create_table "memberships", force: :cascade do |t| |
66 | 82 | t.integer "user_id", null: false |
67 | 83 | t.integer "repo_id", null: false |
68 | 84 | t.datetime "created_at", null: false |
|
0 commit comments