17 lines
433 B
SQL
17 lines
433 B
SQL
#
|
|
# TABLE STRUCTURE FOR: report_transaction
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `report_transaction`;
|
|
|
|
CREATE TABLE `report_transaction` (
|
|
`report_id` int(128) NOT NULL AUTO_INCREMENT,
|
|
`date` varchar(128) NOT NULL,
|
|
`income` varchar(128) NOT NULL,
|
|
`expenditure` varchar(128) NOT NULL,
|
|
`remark` text NOT NULL,
|
|
`created` int(11) NOT NULL,
|
|
PRIMARY KEY (`report_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|