From c875096aa7802d7537b48afa37a1fda1df97d0e8 Mon Sep 17 00:00:00 2001 From: Brian Cao Date: Tue, 23 Aug 2022 14:26:44 -0700 Subject: [PATCH] remove event_old drop --- db/mysql/migrations/03_big_int/migration.sql | 4 ---- db/postgresql/migrations/03_big_int/migration.sql | 4 ---- 2 files changed, 8 deletions(-) diff --git a/db/mysql/migrations/03_big_int/migration.sql b/db/mysql/migrations/03_big_int/migration.sql index fcbd664c..ebc61030 100644 --- a/db/mysql/migrations/03_big_int/migration.sql +++ b/db/mysql/migrations/03_big_int/migration.sql @@ -20,7 +20,6 @@ - The primary key for the `website` table will be changed. If it partially fails, the table could be left without primary key constraint. - You are about to alter the column `website_id` on the `website` table. The data in that column could be lost. The data in that column will be cast from `UnsignedInt` to `UnsignedBigInt`. - You are about to alter the column `user_id` on the `website` table. The data in that column could be lost. The data in that column will be cast from `UnsignedInt` to `UnsignedBigInt`. - - You are about to drop the `_event_old` table. If the table is not empty, all the data it contains will be lost. */ -- DropForeignKey @@ -81,9 +80,6 @@ ALTER TABLE `website` DROP PRIMARY KEY, MODIFY `user_id` BIGINT UNSIGNED NOT NULL, ADD PRIMARY KEY (`website_id`); --- DropTable -DROP TABLE `_event_old`; - -- AddForeignKey ALTER TABLE `event` ADD CONSTRAINT `event_ibfk_2` FOREIGN KEY (`session_id`) REFERENCES `session`(`session_id`) ON DELETE CASCADE ON UPDATE NO ACTION; diff --git a/db/postgresql/migrations/03_big_int/migration.sql b/db/postgresql/migrations/03_big_int/migration.sql index b0cdeba6..9002f0b1 100644 --- a/db/postgresql/migrations/03_big_int/migration.sql +++ b/db/postgresql/migrations/03_big_int/migration.sql @@ -7,7 +7,6 @@ - The primary key for the `pageview` table will be changed. If it partially fails, the table could be left without primary key constraint. - The primary key for the `session` table will be changed. If it partially fails, the table could be left without primary key constraint. - The primary key for the `website` table will be changed. If it partially fails, the table could be left without primary key constraint. - - You are about to drop the `_event_old` table. If the table is not empty, all the data it contains will be lost. */ -- DropForeignKey @@ -76,9 +75,6 @@ ALTER SEQUENCE pageview_view_id_seq AS BIGINT; ALTER SEQUENCE session_session_id_seq AS BIGINT; ALTER SEQUENCE website_website_id_seq AS BIGINT; --- DropTable -DROP TABLE "_event_old"; - -- AddForeignKey ALTER TABLE "event" ADD CONSTRAINT "event_session_id_fkey" FOREIGN KEY ("session_id") REFERENCES "session"("session_id") ON DELETE CASCADE ON UPDATE CASCADE;