You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
393 B
12 lines
393 B
CREATE TABLE IF NOT EXISTS `#__foos_details` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
|
|
`name` varchar(255) NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
|
|
|
|
INSERT INTO `#__foos_details` (`name`) VALUES
|
|
('Nina'),
|
|
('Astrid'),
|
|
('Elmar');
|