Skip to content

Commit 4bf43af

Browse files
fix: update alter table query template (#1284)
1 parent 08e4308 commit 4bf43af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/Tenant/utils/queryTemplates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ WITH (
5959
};
6060
export const alterTableTemplate = (path: string) => {
6161
return `ALTER TABLE \`${path}\`
62-
ADD COLUMN is_deleted Bool;`;
62+
ADD COLUMN numeric_column Int32;`;
6363
};
6464
export const selectQueryTemplate = (path: string) => {
6565
return `SELECT *

0 commit comments

Comments
 (0)