feat: add start command

This commit is contained in:
Mauricio Siu
2024-07-12 23:58:05 -06:00
parent adc9e6d804
commit 7c049cf438
4 changed files with 140 additions and 51 deletions

View File

@@ -0,0 +1,9 @@
CREATE TABLE `t3_post` (
`id` bigint AUTO_INCREMENT NOT NULL,
`name` varchar(256),
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp ON UPDATE CURRENT_TIMESTAMP,
CONSTRAINT `t3_post_id` PRIMARY KEY(`id`)
);
--> statement-breakpoint
CREATE INDEX `name_idx` ON `t3_post` (`name`);