21 lines
586 B
SQL
21 lines
586 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the `SowInventory` table. If the table is not empty, all the data it contains will be lost.
|
|
|
|
*/
|
|
-- DropTable
|
|
DROP TABLE `SowInventory`;
|
|
|
|
-- CreateTable
|
|
CREATE TABLE `Econ_SowInventory` (
|
|
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
|
`month` VARCHAR(191) NOT NULL,
|
|
`inventory` INTEGER NOT NULL,
|
|
`createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
|
|
`updatedAt` DATETIME(3) NOT NULL,
|
|
|
|
UNIQUE INDEX `Econ_SowInventory_month_key`(`month`),
|
|
PRIMARY KEY (`id`)
|
|
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|