Files
calendar/packages/prisma/migrations/20240816083533_attribute_feature_flag/migration.sql
T
sean-brydonandGitHub 8e4459f2fe chore: missing ff attributes migration (#16229)
* add migration file

* add miration file
2024-08-19 10:09:25 +00:00

10 lines
216 B
SQL

INSERT INTO
"Feature" (slug, enabled, description, "type")
VALUES
(
'attributes',
false,
'Enable attributes - Custom fields for users and teams.',
'OPERATIONAL'
) ON CONFLICT (slug) DO NOTHING;