diff --git a/db/mysql/migrations/04_team_redesign/migration.sql b/db/mysql/migrations/04_team_redesign/migration.sql index 57f8dc93..bf64d45f 100644 --- a/db/mysql/migrations/04_team_redesign/migration.sql +++ b/db/mysql/migrations/04_team_redesign/migration.sql @@ -17,7 +17,7 @@ ALTER TABLE `website` ADD COLUMN `created_by` VARCHAR(36) NULL, ADD COLUMN `team_id` VARCHAR(36) NULL; -- MigrateData -UPDATE "website" SET created_by = user_id WHERE team_id IS NULL; +UPDATE `website` SET created_by = user_id WHERE team_id IS NULL; -- DropTable DROP TABLE `team_website`;