18 lines
454 B
SQL
18 lines
454 B
SQL
#
|
|
# TABLE STRUCTURE FOR: expenditure
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `expenditure`;
|
|
|
|
CREATE TABLE `expenditure` (
|
|
`expenditure_id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`date_payment` varchar(125) NOT NULL,
|
|
`nominal` varchar(125) NOT NULL,
|
|
`remark` text NOT NULL,
|
|
`created` int(11) NOT NULL,
|
|
`category` int(11) NOT NULL,
|
|
`create_by` int(11) NOT NULL,
|
|
PRIMARY KEY (`expenditure_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|