Skip to content

Commit 9f1a443

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents febb4cf + aa605d0 commit 9f1a443

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ allprojects{
2222
```
2323
dependencies {
2424
...
25-
implementation 'com.github.amitjangid80:multiutillib:v1.6.50'
25+
implementation 'com.github.amitjangid80:multiutillib:v1.6.51'
2626
}
2727
```
2828

@@ -43,7 +43,7 @@ dependencies {
4343
<dependency>
4444
<groupId>com.github.amitjangid80</groupId>
4545
<artifactId>multiutillib</artifactId>
46-
<version>v1.6.42</version>
46+
<version>v1.6.51</version>
4747
<dependency>
4848
```
4949

@@ -385,7 +385,7 @@ dbHelper.insertDataWithTransaction(String tableName, int dbColumnCount)
385385
**Altering Table**
386386
// this is an example for altering table
387387
// this method will add new columns to the table
388-
dbHelper.addDataForTable(new DbData("age" /*this is the name of the column*/, 26 /*data for that column*/))
388+
dbHelper.addColumnForTable(new DbColumn("age" /*this is the name of the column*/, int /*datatype for that column*/))
389389
.alterTable("TABLE_NAME");
390390

391391
**Inserting records using json array or json object**

0 commit comments

Comments
 (0)