From 8ed4e4e2fed32b2c6b39911beff021e8eab548b6 Mon Sep 17 00:00:00 2001 From: Keith Schacht Date: Mon, 13 May 2024 13:46:34 -0500 Subject: [PATCH] Hotfix again: Update schema file --- db/schema.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/db/schema.rb b/db/schema.rb index 37bdacfeb..6e415229f 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2024_05_04_212345) do +ActiveRecord::Schema[7.1].define(version: 2024_05_13_184146) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -96,6 +96,13 @@ t.index ["user_id"], name: "index_documents_on_user_id" end + create_table "llms", force: :cascade do |t| + t.string "name" + t.text "description" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + create_table "messages", force: :cascade do |t| t.bigint "conversation_id", null: false t.string "role", null: false