Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Booleans #5

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/java/com/craftmend/storm/Storm.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public void runMigrations() throws SQLException {
if (!tables.next()) {
// table doesn't exist.. creating
logger.info("Creating table " + parsed.getTableName() + "...");
logger.warning("Statement: " + model.statements().buildSqlTableCreateStatement(driver.getDialect(), this));
driver.execute(model.statements().buildSqlTableCreateStatement(driver.getDialect(), this));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public Boolean fromSql(ParsedField parsedField, Object sqlValue) {

@Override
public Object toSql(Storm storm, Boolean value) {
return value;
return value ? 1 : 0;
}

@Override
public String getSqlBaseType() {
return "BOOLEAN";
return "INTEGER";
}

@Override
Expand Down