We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01354f1 commit 3dd7e17Copy full SHA for 3dd7e17
1 file changed
packages/meta/db-meta-schema/deploy/schemas/collections_public/tables/table/table.sql
@@ -5,7 +5,7 @@
5
6
BEGIN;
7
8
-CREATE TYPE collections_public.table_category AS ENUM ('system', 'module', 'user');
+CREATE TYPE collections_public.table_category AS ENUM ('core', 'module', 'app');
9
10
CREATE TABLE collections_public.table (
11
id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
@@ -20,7 +20,7 @@ CREATE TABLE collections_public.table (
20
21
smart_tags jsonb,
22
23
- category collections_public.table_category NOT NULL DEFAULT 'user',
+ category collections_public.table_category NOT NULL DEFAULT 'app',
24
module text NULL,
25
scope int NULL,
26
0 commit comments