Skip to content

Commit 84a3d06

Browse files
committed
2 parents b530723 + 5b6a6cc commit 84a3d06

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Download the latest JAR: https://github.com/DenzelCode/AdvancedSQL/releases/late
1313
<groupId>com.code</groupId>
1414
<artifactId>advancedsql</artifactId>
1515
<version>2.0.0</version>
16+
<scope>system</scope>
1617
<systemPath>${project.basedir}/lib/AdvancedSQL.jar</systemPath>
1718
</dependency>
1819
```
@@ -46,7 +47,7 @@ try {
4647
ITable table = mySQL.table("users");
4748

4849
// Create table
49-
Create create = table.create();
50+
Create create = table.create().ifNotExists();
5051

5152
// Table columns
5253
create.id();

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>junit</groupId>
4040
<artifactId>junit</artifactId>
41-
<version>4.12</version>
41+
<version>4.13.1</version>
4242
<scope>test</scope>
4343
</dependency>
4444
</dependencies>

0 commit comments

Comments
 (0)