diff --git a/packages/prisma/migrations/20240816083533_attribute_feature_flag/migration.sql b/packages/prisma/migrations/20240816083533_attribute_feature_flag/migration.sql new file mode 100644 index 0000000000..0d3bc7ca2f --- /dev/null +++ b/packages/prisma/migrations/20240816083533_attribute_feature_flag/migration.sql @@ -0,0 +1,9 @@ +INSERT INTO + "Feature" (slug, enabled, description, "type") +VALUES + ( + 'attributes', + false, + 'Enable attributes - Custom fields for users and teams.', + 'OPERATIONAL' + ) ON CONFLICT (slug) DO NOTHING;