Files
thetool/contrib/migrations/20210701-networkaddress.sql
2021-07-01 22:40:39 +02:00

12 lines
410 B
SQL

CREATE TABLE `NetworkAddress` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`network_id` int(11) NOT NULL,
`address_id` int(11) NOT NULL,
`type` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`create_by` int(11) NOT NULL,
`edit_by` int(11) NOT NULL,
`create` int(10) NOT NULL,
`edit` int(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci