We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b530723 + 5b6a6cc commit 84a3d06Copy full SHA for 84a3d06
2 files changed
README.md
@@ -13,6 +13,7 @@ Download the latest JAR: https://github.com/DenzelCode/AdvancedSQL/releases/late
13
<groupId>com.code</groupId>
14
<artifactId>advancedsql</artifactId>
15
<version>2.0.0</version>
16
+ <scope>system</scope>
17
<systemPath>${project.basedir}/lib/AdvancedSQL.jar</systemPath>
18
</dependency>
19
```
@@ -46,7 +47,7 @@ try {
46
47
ITable table = mySQL.table("users");
48
49
// Create table
- Create create = table.create();
50
+ Create create = table.create().ifNotExists();
51
52
// Table columns
53
create.id();
pom.xml
@@ -38,7 +38,7 @@
38
<dependency>
39
<groupId>junit</groupId>
40
<artifactId>junit</artifactId>
41
- <version>4.12</version>
+ <version>4.13.1</version>
42
<scope>test</scope>
43
44
</dependencies>
0 commit comments