Skip to content

Commit

Permalink
Hotfix again: Update schema file
Browse files Browse the repository at this point in the history
  • Loading branch information
krschacht committed May 13, 2024
1 parent 1ff8799 commit 8ed4e4e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8ed4e4e

Please sign in to comment.