mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Merge pull request #1151 from itflow-org/domain-history
Add domain history
This commit is contained in:
18
db.sql
18
db.sql
@@ -682,6 +682,24 @@ CREATE TABLE `domains` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `domain_history`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `domain_history`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `domain_history` (
|
||||
`domain_history_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`domain_history_column` varchar(200) NOT NULL,
|
||||
`domain_history_old_value` text NOT NULL,
|
||||
`domain_history_new_value` text NOT NULL,
|
||||
`domain_history_domain_id` int(11) NOT NULL,
|
||||
`domain_history_modified_at` datetime NOT NULL DEFAULT current_timestamp(),
|
||||
PRIMARY KEY (`domain_history_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `email_queue`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user