26 lines
650 B
SQL
26 lines
650 B
SQL
#
|
|
# TABLE STRUCTURE FOR: m_odp
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `m_odp`;
|
|
|
|
CREATE TABLE `m_odp` (
|
|
`id_odp` int(11) NOT NULL AUTO_INCREMENT,
|
|
`code_odp` text NOT NULL,
|
|
`code_odc` int(11) NOT NULL,
|
|
`coverage_odp` int(11) NOT NULL,
|
|
`no_port_odc` int(11) NOT NULL,
|
|
`color_tube_fo` text NOT NULL,
|
|
`no_pole` text NOT NULL,
|
|
`latitude` text NOT NULL,
|
|
`longitude` text NOT NULL,
|
|
`total_port` int(11) NOT NULL,
|
|
`document` text NOT NULL,
|
|
`remark` text NOT NULL,
|
|
`created` int(11) NOT NULL,
|
|
`create_by` int(11) NOT NULL,
|
|
`role_id` int(11) NOT NULL,
|
|
PRIMARY KEY (`id_odp`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
|
|