DBHunter
Infinity Member
Golden Member
- Joined
- August 23, 2025
- Messages
- 1,511
- Reaction score
- 2,158
- Points
- 113
- Thread Author
- #1
Free WordPress database
dtei.educacionchiapas.gob.mx
Download:
Code:
dtei.educacionchiapas.gob.mx
Download:
To see this hidden content, you must reply and react with one of the following reactions :
Like,
Love,
Haha,
Wow
Code:
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` mediumint(8) unsigned NOT NULL,
`post_id` bigint(20) unsigned DEFAULT NULL,
`date_created` datetime NOT NULL,
`date_updated` datetime DEFAULT NULL,
`is_starred` tinyint(1) NOT NULL DEFAULT 0,
`is_read` tinyint(1) NOT NULL DEFAULT 0,
`ip` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL,
`source_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_agent` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`currency` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payment_status` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payment_date` datetime DEFAULT NULL,
`payment_amount` decimal(19,2) DEFAULT NULL,
`payment_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`transaction_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_fulfilled` tinyint(1) DEFAULT NULL,
`created_by` bigint(20) unsigned DEFAULT NULL,
`transaction_type` tinyint(1) DEFAULT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
PRIMARY KEY (`id`),
KEY `form_id` (`form_id`),
KEY `form_id_status` (`form_id`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=47863 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;