diff --git a/metadata/tables.yaml b/metadata/tables.yaml index 434cdfa..7225267 100644 --- a/metadata/tables.yaml +++ b/metadata/tables.yaml @@ -2312,6 +2312,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid @@ -2324,6 +2325,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid @@ -2336,6 +2338,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid @@ -2348,6 +2351,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid @@ -2361,6 +2365,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid @@ -2374,6 +2379,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid @@ -2388,6 +2394,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid @@ -2401,6 +2408,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid @@ -2414,6 +2422,7 @@ - course_id - created_at - deleted + - display - parent_uuid - updated_at - user_uuid diff --git a/migrations/1734269441555_alter_table_public_course_comment_add_column_display/down.sql b/migrations/1734269441555_alter_table_public_course_comment_add_column_display/down.sql new file mode 100644 index 0000000..90193ab --- /dev/null +++ b/migrations/1734269441555_alter_table_public_course_comment_add_column_display/down.sql @@ -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'; diff --git a/migrations/1734269441555_alter_table_public_course_comment_add_column_display/up.sql b/migrations/1734269441555_alter_table_public_course_comment_add_column_display/up.sql new file mode 100644 index 0000000..e3431a9 --- /dev/null +++ b/migrations/1734269441555_alter_table_public_course_comment_add_column_display/up.sql @@ -0,0 +1,2 @@ +alter table "public"."course_comment" add column "display" boolean + not null default 'false';