Skip to content

Commit

Permalink
Merge pull request #179
Browse files Browse the repository at this point in the history
fix: add is_deleted to table project
  • Loading branch information
lihuacai168 authored Feb 21, 2024
2 parents f5b7d58 + 219ecea commit 61f4757
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion db/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,7 @@ CREATE TABLE `project` (
`yapi_openapi_token` varchar(128) NOT NULL,
`jira_bearer_token` varchar(45) NOT NULL,
`jira_project_key` varchar(30) NOT NULL,
`is_deleted` int default 0 not null,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `name` (`name`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4;
Expand All @@ -1087,7 +1088,7 @@ CREATE TABLE `project` (

LOCK TABLES `project` WRITE;
/*!40000 ALTER TABLE `project` DISABLE KEYS */;
INSERT INTO `project` VALUES (7,'2019-11-19 10:00:25.568775','2022-02-24 22:35:30.585009','示例项目','用来查看FasterRunner常用操作','test','test','test','','','','');
INSERT INTO `project` VALUES (7,'2019-11-19 10:00:25.568775','2022-02-24 22:35:30.585009','示例项目','用来查看FasterRunner常用操作','test','test','test','','','','', 0);
/*!40000 ALTER TABLE `project` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down

0 comments on commit 61f4757

Please sign in to comment.