diff --git a/internal/db/migrations/000007_remove_unwanted_columns.down.sql b/internal/db/migrations/000007_remove_unwanted_columns.down.sql new file mode 100644 index 00000000..ef0040aa --- /dev/null +++ b/internal/db/migrations/000007_remove_unwanted_columns.down.sql @@ -0,0 +1 @@ +ALTER TABLE profiles ADD COLUMN label TEXT, ADD COLUMN name TEXT, ADD COLUMN creator TEXT; diff --git a/internal/db/migrations/000007_remove_unwanted_columns.up.sql b/internal/db/migrations/000007_remove_unwanted_columns.up.sql new file mode 100644 index 00000000..f481ecbe --- /dev/null +++ b/internal/db/migrations/000007_remove_unwanted_columns.up.sql @@ -0,0 +1 @@ +ALTER TABLE profiles DROP COLUMN label, DROP COLUMN name, DROP COLUMN creator;