Compare commits

...

8 Commits

Author SHA1 Message Date
127576b03f add default balance in installation 2023-08-19 11:56:01 +07:00
5d4cb4cce0 Merge pull request #65 from hotspotbilling/Development
PPP Comment
2023-08-18 13:39:26 +07:00
4196dbf591 Merge pull request #64 from hotspotbilling/Development
add comment to mikrotik
2023-08-18 10:13:02 +07:00
5f6fc31344 Merge pull request #63 from hotspotbilling/Development
Fix Auto Renewall Cronjob
2023-08-18 09:53:30 +07:00
db03ad3061 Merge pull request #61 from hotspotbilling/Development
From version 2023.8.1 need to click update twice, or click Update Database after update at Community pages
2023-08-16 14:05:19 +07:00
606b4fafcd Merge pull request #57 from hotspotbilling/Development
Add self Update Script
2023-08-01 16:31:03 +07:00
96f92f5e30 Merge pull request #56 from hotspotbilling/Development
- Fix link buy Voucher
- Add email field to registration form
- Change registration design Form
- Add Setting to disable Voucher
- Fix Title for PPPOE plans
- Fix Plugin Cache
2023-07-28 01:44:38 -07:00
2c110db6f9 Version 2023.6.20 - hide package start time
Version 2023.6.20
2023-06-21 09:35:32 +07:00

View File

@ -55,7 +55,7 @@ CREATE TABLE
`address` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
`phonenumber` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0',
`email` varchar(128) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1',
`balance` decimal(15,2) NOT NULL COMMENT 'For Money Deposit',
`balance` decimal(15,2) NOT NULL DEFAULT 0.00 COMMENT 'For Money Deposit',
`auto_renewal` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Auto renewal from balance',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`last_login` datetime DEFAULT NULL