Skip to content

Commit ce03873

Browse files
authored
Merge pull request #137 from n4ze3m/next
v1.3.1
2 parents e2206db + aabcb9e commit ce03873

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

app/ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "app",
33
"private": true,
4-
"version": "1.3.0",
4+
"version": "1.3.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dialoqbase",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Create chatbots with ease",
55
"scripts": {
66
"ui:dev": "pnpm run --filter ui dev",

server/prisma/migrations/20231102171748_q_17/migration.sql

-2
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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 $$;

0 commit comments

Comments
 (0)