/* A description of the transaction (e.g. the CLI command being executed) */ "comment" TEXT, /* An arbitrary comment */ "state_id" INTEGER, /* (enum) */ PRIMARY KEY("id" AUTOINCREMENT), FOREIGN KEY("state_id") REFERENCES "trans_state"("id") )