Skip to content

Commit

Permalink
feat: add display option for course comment, default to false (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzdhybthu authored Dec 15, 2024
1 parent 3c23209 commit ece2325
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions metadata/tables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2312,6 +2312,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand All @@ -2324,6 +2325,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand All @@ -2336,6 +2338,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand All @@ -2348,6 +2351,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand All @@ -2361,6 +2365,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand All @@ -2374,6 +2379,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand All @@ -2388,6 +2394,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand All @@ -2401,6 +2408,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand All @@ -2414,6 +2422,7 @@
- course_id
- created_at
- deleted
- display
- parent_uuid
- updated_at
- user_uuid
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."course_comment" add column "display" boolean
-- not null default 'false';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."course_comment" add column "display" boolean
not null default 'false';

0 comments on commit ece2325

Please sign in to comment.