IO-2274 Add typing to notes.

This commit is contained in:
Patrick Fic
2023-05-17 13:31:15 -07:00
parent 1c89d12034
commit e36904794b
10 changed files with 1616 additions and 8 deletions

View File

@@ -4333,6 +4333,7 @@
- jobid
- private
- text
- type
- updated_at
select_permissions:
- role: user
@@ -4346,6 +4347,7 @@
- jobid
- private
- text
- type
- updated_at
filter:
job:
@@ -4369,6 +4371,7 @@
- jobid
- private
- text
- type
- updated_at
filter:
job:

View File

@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."notes" add column "type" text
-- not null default 'general';

View File

@@ -0,0 +1,2 @@
alter table "public"."notes" add column "type" text
not null default 'general';