d825c9cb5d
This adds various foreign key constraints, indexes, missing NOT NULL constraints, and changes some column types from timestamp to timestamptz. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/31811
23 lines
605 B
Ruby
23 lines
605 B
Ruby
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
class IssuesConfidentialNotNull < ActiveRecord::Migration
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
# Set this constant to true if this migration requires downtime.
|
|
DOWNTIME = false
|
|
|
|
class Issue < ActiveRecord::Base
|
|
self.table_name = 'issues'
|
|
end
|
|
|
|
def up
|
|
Issue.where('confidential IS NULL').update_all(confidential: false)
|
|
|
|
change_column_null :issues, :confidential, false
|
|
end
|
|
|
|
def down
|
|
# There's no way / point to revert this.
|
|
end
|
|
end
|