59 lines
3.0 KiB
SQL
59 lines
3.0 KiB
SQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `licenseQuota` on the `partners` table. All the data in the column will be lost.
|
||
|
|
- Added the required column `updated_at` to the `accounts` table without a default value. This is not possible if the table is not empty.
|
||
|
|
- Added the required column `updated_at` to the `business_activities` table without a default value. This is not possible if the table is not empty.
|
||
|
|
- Added the required column `updated_at` to the `complexes` table without a default value. This is not possible if the table is not empty.
|
||
|
|
- Added the required column `updated_at` to the `guilds` table without a default value. This is not possible if the table is not empty.
|
||
|
|
- Added the required column `updated_at` to the `licenses` table without a default value. This is not possible if the table is not empty.
|
||
|
|
- Added the required column `updated_at` to the `providers` table without a default value. This is not possible if the table is not empty.
|
||
|
|
- Added the required column `updated_at` to the `users` table without a default value. This is not possible if the table is not empty.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `accounts` ADD COLUMN `updated_at` TIMESTAMP(0) NOT NULL,
|
||
|
|
MODIFY `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0);
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `business_activities` ADD COLUMN `updated_at` TIMESTAMP(0) NOT NULL,
|
||
|
|
MODIFY `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0);
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `complexes` ADD COLUMN `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||
|
|
ADD COLUMN `updated_at` TIMESTAMP(0) NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `device_brands` MODIFY `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||
|
|
MODIFY `updated_at` TIMESTAMP(0) NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `devices` MODIFY `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||
|
|
MODIFY `updated_at` TIMESTAMP(0) NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `guilds` ADD COLUMN `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||
|
|
ADD COLUMN `updated_at` TIMESTAMP(0) NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `licenses` ADD COLUMN `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||
|
|
ADD COLUMN `updated_at` TIMESTAMP(0) NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `partners` DROP COLUMN `licenseQuota`,
|
||
|
|
ADD COLUMN `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||
|
|
ADD COLUMN `license_quota` INTEGER NULL DEFAULT 0,
|
||
|
|
ADD COLUMN `updated_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0);
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `poses` MODIFY `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||
|
|
MODIFY `updated_at` TIMESTAMP(0) NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `providers` ADD COLUMN `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||
|
|
ADD COLUMN `updated_at` TIMESTAMP(0) NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `users` ADD COLUMN `updated_at` TIMESTAMP(0) NOT NULL,
|
||
|
|
MODIFY `created_at` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0);
|