Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add display option for course comment, default to false #195

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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';
Loading