Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Jan 16, 2025
1 parent e85ba60 commit 967484a
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/components/my-studio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ function MyStudioInternal({
}, [router]);

const extensions = useMemo(() => {
console.log("Create standard extensions");
return new StudioExtensionManager(createStandardExtensions());
}, []);

Expand Down
1 change: 0 additions & 1 deletion src/drivers/base-driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ export interface DriverFlags {
supportRowId: boolean;
supportCreateUpdateDatabase: boolean;
supportCreateUpdateTrigger: boolean;
supportCreateUpdateView: boolean;
}

export interface DatabaseTableColumnChange {
Expand Down
1 change: 0 additions & 1 deletion src/drivers/mysql/mysql-driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ export default abstract class MySQLLikeDriver extends CommonSQLImplement {
supportInsertReturning: false,
supportUpdateReturning: false,
supportCreateUpdateTrigger: true,
supportCreateUpdateView: true,
};
}

Expand Down
1 change: 0 additions & 1 deletion src/drivers/postgres/postgres-driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export default abstract class PostgresLikeDriver extends CommonSQLImplement {
supportInsertReturning: true,
supportUpdateReturning: true,
supportCreateUpdateTrigger: false,
supportCreateUpdateView: true,
};
}

Expand Down
1 change: 0 additions & 1 deletion src/drivers/sqlite-base-driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export abstract class SqliteLikeBaseDriver extends CommonSQLImplement {
supportCreateUpdateTable: true,
supportCreateUpdateDatabase: false,
supportCreateUpdateTrigger: true,
supportCreateUpdateView: true,
dialect: "sqlite",
};
}
Expand Down

0 comments on commit 967484a

Please sign in to comment.