Skip to content

Commit

Permalink
Add usage_type to main_settings for DummyData (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmohns authored Mar 4, 2024
1 parent 8ec7b9f commit 0553c58
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Website/htdocs/mpmanager/database/dummyData/dummy_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14748,6 +14748,7 @@ DROP TABLE IF EXISTS `main_settings`;

CREATE TABLE `main_settings` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`usage_type` enum('mini-grid','shs','e-bike','mini-grid&shs','mini-grid&e-bike','shs&e-bike','mini-grid&shs&e-bike') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'mini-grid&shs&e-bike',
`site_title` char(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`company_name` char(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`currency` char(10) COLLATE utf8mb4_unicode_ci NOT NULL,
Expand All @@ -14763,9 +14764,9 @@ CREATE TABLE `main_settings` (
LOCK TABLES `main_settings` WRITE;
/*!40000 ALTER TABLE `main_settings` DISABLE KEYS */;

INSERT INTO `main_settings` (`id`, `site_title`, `company_name`, `currency`, `country`, `language`, `vat_energy`, `vat_appliance`, `created_at`, `updated_at`)
INSERT INTO `main_settings` (`id`, `usage_type`, `site_title`, `company_name`, `currency`, `country`, `language`, `vat_energy`, `vat_appliance`, `created_at`, `updated_at`)
VALUES
(1,'MPM Demo','Demo MPM','TSh','Tanzania','en',1.00,18.00,'2023-10-10 11:43:51','2023-10-24 14:44:40');
(1,'mini-grid&shs&e-bike','MPM Demo','Demo MPM','TSh','Tanzania','en',1.00,18.00,'2023-10-10 11:43:51','2023-10-24 14:44:40');

/*!40000 ALTER TABLE `main_settings` ENABLE KEYS */;
UNLOCK TABLES;
Expand Down

0 comments on commit 0553c58

Please sign in to comment.