sea-orm/examples/bakery.sql
Chris Tsang 98b0e9df95 Example
2021-05-07 18:03:30 +08:00

7 lines
185 B
SQL

DROP TABLE IF EXISTS `cake`;
CREATE TABLE `cake` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;