Skip to content

Commit 8b1d3f3

Browse files
committed
fix: boolean default on string
1 parent 1a5a2c6 commit 8b1d3f3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.DS_Store

0 Bytes
Binary file not shown.

src/main/java/com/code/advancedsql/query/column/Boolean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public Boolean(IAction<IColumn> action, java.lang.String name) {
1515
* @param value Default value.
1616
* @return Column object.
1717
*/
18-
public Boolean defaultValue(java.lang.Boolean value) {
18+
public Boolean defaultValue(java.lang.String value) {
1919
this.defaultValue = value;
2020

2121
return this;

0 commit comments

Comments
 (0)