Skip to content

Remove seat_link_enabled from ApplicationSettings db table

What does this MR do?

Part of https://gitlab.com/gitlab-org/gitlab/-/issues/332811

Prior to this change, the column seat_link_enabled in ApplicationSettings was ignored (!64160 (merged)) in the previous milestone. In the current milestone, the column can be dropped from the database.

Up migration:

== 20210721122840 RemoveSeatLinkEnabledFromApplicationSettings: migrating =====
-- remove_column(:application_settings, :seat_link_enabled)
   -> 0.0148s
== 20210721122840 RemoveSeatLinkEnabledFromApplicationSettings: migrated (0.0237s) 

Down migration:

== 20210721122840 RemoveSeatLinkEnabledFromApplicationSettings: reverting =====
-- add_column(:application_settings, :seat_link_enabled, :boolean, {:null=>false, :default=>true})
   -> 0.0065s
== 20210721122840 RemoveSeatLinkEnabledFromApplicationSettings: reverted (0.0155s) 

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Edited by Mayra Cabrera

Merge request reports