Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ project
db/migration
V1__CreateTables.sql
V2__AddRecords
tabe-list.txt
table-list.txt
TABLE_1.csv
TABLE_2.csv
```
Expand Down Expand Up @@ -61,9 +61,9 @@ Next, add the CSV Loader dependency to pom. xml.
<dependency>
<groupId>io.sitoolkit.csv</groupId>
<artifactId>sit-csvloader-flyway</artifactId>
<version>0.8</version>
<version>0.9</version>
</dependency>
</dependences>
</dependencies>
```


Expand Down
6 changes: 3 additions & 3 deletions README_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ project
db/migration
V1__CreateTables.sql
V2__AddRecords
tabe-list.txt
table-list.txt
TABLE_1.csv
TABLE_2.csv
```
Expand Down Expand Up @@ -58,9 +58,9 @@ CREATE TABLE TABLE_1 (
<dependency>
<groupId>io.sitoolkit.csv</groupId>
<artifactId>sit-csvloader-flyway</artifactId>
<version>0.8</version>
<version>0.9</version>
</dependency>
</dependences>
</dependencies>
```

次に、データをロードするためのMigrationクラスを作成します。このクラスではBaseJavaCsvMigrationを継承します。
Expand Down