File tree 4 files changed +21
-4
lines changed
4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " app" ,
3
3
"private" : true ,
4
- "version" : " 1.3.0 " ,
4
+ "version" : " 1.3.1 " ,
5
5
"type" : " module" ,
6
6
"scripts" : {
7
7
"dev" : " vite" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dialoqbase" ,
3
- "version" : " 1.3.0 " ,
3
+ "version" : " 1.3.1 " ,
4
4
"description" : " Create chatbots with ease" ,
5
5
"scripts" : {
6
6
"ui:dev" : " pnpm run --filter ui dev" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ -- AlterTable
2
+ DO $$
3
+ BEGIN
4
+ IF EXISTS (
5
+ SELECT FROM pg_tables
6
+ WHERE schemaname = ' public'
7
+ AND tablename = ' Bot'
8
+ ) THEN
9
+ IF NOT EXISTS (
10
+ SELECT 1
11
+ FROM information_schema .columns
12
+ WHERE table_schema = ' public'
13
+ AND table_name = ' Bot'
14
+ AND column_name = ' bot_model_api_key'
15
+ ) THEN
16
+ ALTER TABLE " Bot" ADD COLUMN " bot_model_api_key" TEXT ;
17
+ END IF;
18
+ END IF;
19
+ END $$;
You can’t perform that action at this time.
0 commit comments