Add Column
Current Schema
CREATE TABLE taxonomies (
id VARCHAR(50) NOT NULL,
project_id VARCHAR(50),
name VARCHAR(255) NOT NULL,
status JSON NOT NULL,
workflow_id VARCHAR(50),
tenant_id VARCHAR(50) NOT NULL,
license_tier JSON,
concepts JSON,
relationships JSON,
root_concepts JSON,
metadata JSON,
generation_metrics JSON,
exported_formats JSON,
created_at JSON NOT NULL,
updated_at JSON NOT NULL,
deleted BOOLEAN,
PRIMARY KEY (id)
)