mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 17:42:29 -04:00
Co-authored-by: Job Curtis <job.curtis@gmail.com> Co-authored-by: Alex Cabal <alex@standardebooks.org>
6 lines
214 B
SQL
6 lines
214 B
SQL
CREATE TABLE `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;
|