local-llm-database/db/migrations/0001_create_assistants.rb
2025-09-03 00:12:44 -05:00

21 lines
519 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
create_table(:assistants) do
primary_key :id
String :name, null: false
String :run_command, null: false, unique: true
String :reputation, text: true
Integer :context_length
Integer :parameters
Float :prompt_rate
Float :eval_rate
String :capabilities
String :test_results
DateTime :created_at, null: false, default: Sequel::CURRENT_TIMESTAMP
DateTime :updated_at
end
end
end