We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How to reproduce:
@DatabaseTable(tableName = "comments") public class Comment { @DatabaseField(generatedId = true, allowGeneratedIdInsert=true) public Integer id; @DatabaseField(canBeNull = false) public String text; }
Then run TableUtils.createTableIfNotExists(connectionSource, Comment.class) twice.
TableUtils.createTableIfNotExists(connectionSource, Comment.class)
The text was updated successfully, but these errors were encountered:
Seems like my issue is a duplicate of #20 Environment: PostgreSQL 9.3.40
Here is build.gradle
build.gradle
dependencies { compile group: "com.j256.ormlite", name: "ormlite-core", version: "4.48" compile group: "com.j256.ormlite", name: "ormlite-jdbc", version: "4.48" compile group: "org.postgresql", name: "postgresql", version: "9.3-1102-jdbc41" }
Sorry, something went wrong.
Yes this is a dup of #20 .
No branches or pull requests
How to reproduce:
Then run
TableUtils.createTableIfNotExists(connectionSource, Comment.class)
twice.The text was updated successfully, but these errors were encountered: