Files
Codewalkers/drizzle/0010_add_account_credentials.sql
2026-02-07 00:33:12 +01:00

6 lines
285 B
SQL

-- Migration: Add config_json and credentials columns to accounts table
-- Credentials are now stored in DB and written to disk before spawning agents.
ALTER TABLE `accounts` ADD COLUMN `config_json` text;--> statement-breakpoint
ALTER TABLE `accounts` ADD COLUMN `credentials` text;