-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fixfix-unit
- Loading branch information
Showing
6 changed files
with
37 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -388,7 +388,7 @@ CREATE TABLE `gpts_app_collection` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'autoincrement id', | ||
`app_code` varchar(255) NOT NULL COMMENT 'Current AI assistant code', | ||
`user_code` int(11) NOT NULL COMMENT 'user code', | ||
`sys_code` varchar(255) NOT NULL COMMENT 'system app code', | ||
`sys_code` varchar(255) NULL COMMENT 'system app code', | ||
`created_at` datetime DEFAULT NULL COMMENT 'create time', | ||
`updated_at` datetime DEFAULT NULL COMMENT 'last update time', | ||
PRIMARY KEY (`id`), | ||
|
@@ -439,10 +439,10 @@ CREATE TABLE `recommend_question` ( | |
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'autoincrement id', | ||
`gmt_create` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'create time', | ||
`gmt_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'last update time', | ||
`app_code` varchar(255) DEFAULT NULL COMMENT 'Current AI assistant code', | ||
`app_code` varchar(255) NOT NULL COMMENT 'Current AI assistant code', | ||
`question` text DEFAULT NULL COMMENT 'question', | ||
`user_code` int(11) NOT NULL COMMENT 'user code', | ||
`sys_code` varchar(255) NOT NULL COMMENT 'system app code', | ||
`sys_code` varchar(255) NULL COMMENT 'system app code', | ||
`valid` varchar(10) DEFAULT 'true' COMMENT 'is it effective,true/false', | ||
`chat_mode` varchar(255) DEFAULT NULL COMMENT 'Conversation scene mode,chat_knowledge...', | ||
`params` text DEFAULT NULL COMMENT 'question param', | ||
|
@@ -456,7 +456,7 @@ CREATE TABLE `user_recent_apps` ( | |
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'autoincrement id', | ||
`gmt_create` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'create time', | ||
`gmt_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'last update time', | ||
`app_code` varchar(255) DEFAULT NULL COMMENT 'AI assistant code', | ||
`app_code` varchar(255) NOT NULL COMMENT 'AI assistant code', | ||
`last_accessed` timestamp NULL DEFAULT NULL COMMENT 'User recent usage time', | ||
`user_code` varchar(255) DEFAULT NULL COMMENT 'user code', | ||
`sys_code` varchar(255) DEFAULT NULL COMMENT 'system app code', | ||
|
@@ -558,4 +558,4 @@ VALUES ('user_18', 'password_18', '[email protected]', '12345678908'); | |
INSERT INTO users (username, password, email, phone) | ||
VALUES ('user_19', 'password_19', '[email protected]', '12345678909'); | ||
INSERT INTO users (username, password, email, phone) | ||
VALUES ('user_20', 'password_20', '[email protected]', '12345678900'); | ||
VALUES ('user_20', 'password_20', '[email protected]', '12345678900'); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7019,9 +7019,9 @@ multicast-dns@^7.2.5: | |
thunky "^1.0.2" | ||
|
||
nanoid@^3.3.7: | ||
version "3.3.7" | ||
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz" | ||
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== | ||
version "3.3.8" | ||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" | ||
integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== | ||
|
||
[email protected]: | ||
version "0.6.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
API_BASE_URL=http://127.0.0.1:5670 |