This commit is contained in:
Tyrel Souza 2022-10-14 14:25:43 -04:00
parent 49cf88bb1d
commit df7beeb075
No known key found for this signature in database
GPG Key ID: F6582CF1308A2360
1 changed files with 11 additions and 0 deletions

11
new.sql Normal file
View File

@ -0,0 +1,11 @@
CREATE TABLE `albums` (
`id` bigint NOT NULL AUTO_INCREMENT,
`created_at` datetime(3) DEFAULT NULL,
`updated_at` datetime(3) DEFAULT NULL,
`deleted_at` datetime(3) DEFAULT NULL,
`title` longtext,
`artist` longtext,
`price` double DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_albums_deleted_at` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci