mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 15:20:32 -04:00
6 lines
228 B
SQL
6 lines
228 B
SQL
CREATE TABLE IF NOT EXISTS `Museums` (
|
|
`MuseumId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`Name` varchar(255) NOT NULL,
|
|
`Domain` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`MuseumId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|