Create idempotent SQL statements for the Drizzle MySQL audit log table.
Run these during migrations or local setup before using createDrizzleMysqlAuditLogPort(...).
createDrizzleMysqlAuditLogPort(...)
Indexes are declared inline because MySQL has no CREATE INDEX IF NOT EXISTS; the whole shape stays idempotent under CREATE TABLE IF NOT EXISTS.
CREATE INDEX IF NOT EXISTS
CREATE TABLE IF NOT EXISTS
Create idempotent SQL statements for the Drizzle MySQL audit log table.
Run these during migrations or local setup before using
createDrizzleMysqlAuditLogPort(...).Indexes are declared inline because MySQL has no
CREATE INDEX IF NOT EXISTS; the whole shape stays idempotent underCREATE TABLE IF NOT EXISTS.