feat: add start command
This commit is contained in:
9
t3/drizzle/0000_foamy_korg.sql
Normal file
9
t3/drizzle/0000_foamy_korg.sql
Normal 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`);
|
||||
Reference in New Issue
Block a user