26 lines
650 B
SQL
26 lines
650 B
SQL
#
|
|
# TABLE STRUCTURE FOR: m_odc
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `m_odc`;
|
|
|
|
CREATE TABLE `m_odc` (
|
|
`id_odc` int(11) NOT NULL AUTO_INCREMENT,
|
|
`code_odc` text NOT NULL,
|
|
`coverage_odc` int(11) NOT NULL,
|
|
`no_port_olt` 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,
|
|
`role_id` int(11) NOT NULL,
|
|
`create_by` int(11) NOT NULL,
|
|
`lock_odc` int(11) NOT NULL,
|
|
PRIMARY KEY (`id_odc`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
|
|