creditKey: SQLiteTableWithColumns<
{
name: "credit_key";
schema: undefined;
columns: {
txnId: SQLiteColumn<
{
name: "txnId";
tableName: "credit_key";
dataType: "string";
columnType: "SQLiteText";
data: string;
driverParam: string;
notNull: true;
hasDefault: false;
isPrimaryKey: true;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: [string, ...string[]];
baseColumn: never;
identity: undefined;
generated: undefined;
},
{},
{ length: number
| undefined },
>;
keyId: SQLiteColumn<
{
name: "keyId";
tableName: "credit_key";
dataType: "string";
columnType: "SQLiteText";
data: string;
driverParam: string;
notNull: true;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: [string, ...string[]];
baseColumn: never;
identity: undefined;
generated: undefined;
},
{},
{ length: number
| undefined },
>;
};
dialect: "sqlite";
},
> = ...