Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
L-Mario564 committed Dec 2, 2024
1 parent 31dbec9 commit 994f899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drizzle-orm/src/singlestore-core/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class SingleStoreSchema<TName extends string = string> {
) {}

table: SingleStoreTableFn<TName> = (name, columns, extraConfig) => {
return singlestoreTableWithSchema(name, columns, extraConfig, this.schemaName);
return singlestoreTableWithSchema(name, columns, extraConfig as any, this.schemaName);
};
/*
view = ((name, columns) => {
Expand Down

0 comments on commit 994f899

Please sign in to comment.