Variable oauthAccountsConst
oauthAccounts: SQLiteTableWithColumns<
{
name: "oauth_accounts";
schema: undefined;
columns: {
providerId: SQLiteColumn<
{
name: "provider_id";
tableName: "oauth_accounts";
dataType: "string";
columnType: "SQLiteText";
data: "email"
| "google";
driverParam: string;
notNull: true;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: ["email", "google"];
baseColumn: never;
identity: undefined;
generated: undefined;
},
object,
>;
providerUserId: SQLiteColumn<
{
name: "provider_user_id";
tableName: "oauth_accounts";
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;
},
object,
>;
createdAt: SQLiteColumn<
{
name: "created_at";
tableName: "oauth_accounts";
dataType: "date";
columnType: "SQLiteTimestamp";
data: Date;
driverParam: number;
notNull: true;
hasDefault: true;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: true;
enumValues: undefined;
baseColumn: never;
identity: undefined;
generated: undefined;
},
object,
>;
userId: SQLiteColumn<
{
name: "user_id";
tableName: "oauth_accounts";
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;
},
object,
>;
};
dialect: "sqlite";
},
> = ...