13 lines
392 B
SQL
13 lines
392 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `name` to the `Trigger_Logs` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Stock_Balance` MODIFY `updatedAt` TIMESTAMP(0) NOT NULL,
|
|
MODIFY `createdAt` TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0);
|
|
|
|
-- AlterTable
|
|
ALTER TABLE `Trigger_Logs` ADD COLUMN `name` TEXT NOT NULL;
|