Commit f4e677ca authored by Adam Hegyi's avatar Adam Hegyi

Merge branch 'patch-fix-structure-sql-order-for-application-settings' into 'master'

Fix the order of structure.sql to match db:migrate

See merge request gitlab-org/gitlab!29513
parents bf8f8b14 ef8cb1f1
......@@ -397,9 +397,9 @@ CREATE TABLE public.application_settings (
email_restrictions text,
npm_package_requests_forwarding boolean DEFAULT true NOT NULL,
namespace_storage_size_limit bigint DEFAULT 0 NOT NULL,
issues_create_limit integer DEFAULT 300 NOT NULL,
seat_link_enabled boolean DEFAULT true NOT NULL,
container_expiration_policies_enable_historic_entries boolean DEFAULT false NOT NULL
container_expiration_policies_enable_historic_entries boolean DEFAULT false NOT NULL,
issues_create_limit integer DEFAULT 300 NOT NULL
);
CREATE SEQUENCE public.application_settings_id_seq
......
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