Skip to content

Commit

Permalink
fixTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Yingjian Wu committed Jun 2, 2024
1 parent 8165c60 commit 7ba6050
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,36 @@ CREATE TABLE data_metadata_delete (
KEY date_created (date_created)
) DEFAULT CHARSET=latin1;

--
-- Table structure for table `parent_child_relation`
--
DROP TABLE IF EXISTS `parent_child_relation`;
CREATE TABLE `parent_child_relation` (
`parent` varchar(255) NOT NULL,
`child` varchar(255) NOT NULL,
`relation_type` varchar(255) NOT NULL,
PRIMARY KEY (`parent`, `child`, `relation_type`),
INDEX `idx_child` (`child`)
) ENGINE=InnoDB AUTO_INCREMENT=10078235 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

DROP TABLE IF EXISTS `definition_metadata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `definition_metadata` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`version` bigint(20) NOT NULL,
`created_by` varchar(255) NOT NULL,
`data` longtext NOT NULL,
`date_created` datetime NOT NULL,
`last_updated` datetime NOT NULL,
`last_updated_by` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=10078235 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `definition_metadata`
--
Expand Down

0 comments on commit 7ba6050

Please sign in to comment.