Commit 1e0aa2ae authored by Matija Čupić's avatar Matija Čupić

Remove default value from cache_index migration

parent 3d405a69
......@@ -7,13 +7,7 @@ class AddCacheIndexToProject < ActiveRecord::Migration
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
disable_ddl_transaction!
def up
add_column_with_default(:projects, :cache_index, :integer, default: 0)
end
def down
remove_column(:projects, :cache_index)
def change
add_column :projects, :cache_index, :integer
end
end
......@@ -1872,7 +1872,7 @@ ActiveRecord::Schema.define(version: 20171229225929) do
t.boolean "remote_mirror_available_overridden"
t.boolean "only_mirror_protected_branches"
t.boolean "pull_mirror_available_overridden"
t.integer "cache_index", default: 0, null: false
t.integer "cache_index"
end
add_index "projects", ["ci_id"], name: "index_projects_on_ci_id", using: :btree
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment