PHP Classes

File: SQL File

Recommend this page to a friend!
  Packages of Matthew Asham   Binkterm PHP   database/migrations/v1.11.0.74_ai_bots.sql   Download  
File: database/migrations/v1.11.0.74_ai_bots.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Binkterm PHP
Bulletin board system based on the Web
Author: By
Last change:
Date: 1 month ago
Size: 651 bytes
 

Contents

Class file image Download
CREATE TABLE ai_bots ( id SERIAL PRIMARY KEY, user_id INTEGER NOT NULL REFERENCES users(id), name VARCHAR(100) NOT NULL, description TEXT, system_prompt TEXT NOT NULL DEFAULT '', provider VARCHAR(50), model VARCHAR(100), weekly_budget_usd NUMERIC(10,4) NOT NULL DEFAULT 1.00, context_messages SMALLINT NOT NULL DEFAULT 10, is_active BOOLEAN NOT NULL DEFAULT TRUE, created_at TIMESTAMP NOT NULL DEFAULT NOW(), updated_at TIMESTAMP NOT NULL DEFAULT NOW() ); CREATE INDEX idx_ai_bots_user_id ON ai_bots(user_id);