You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,15 +130,15 @@ production:
130
130
131
131
See [here](https://github.com/go-sql-driver/mysql#parsetime) for more information.
132
132
133
-
### Oracle(oci8)
134
-
Oracle Driver is [oci8](https://github.com/mattn/go-oci8), it is not pure golang code and rely on Oracle Office Client([Instant Client](https://www.oracle.com/technetwork/database/database-technologies/instant-client/downloads/index.html)), more detail information is [oci8 repo](https://github.com/mattn/go-oci8).
133
+
### Oracle(oci8)
134
+
Oracle Driver is [oci8](https://github.com/mattn/go-oci8), it is not pure Go code and relies on Oracle Office Client([Instant Client](https://www.oracle.com/database/technologies/instant-client/downloads.html)), more detailed information is in the [oci8 repo](https://github.com/mattn/go-oci8).
135
135
136
136
#### Install with Oracle support
137
137
138
138
To install the library and command line program, use the following:
139
139
140
140
```bash
141
-
go get -tags oci8 -v github.com/rubenv/sql-migrate/...
141
+
go get -tags oracle -v github.com/rubenv/sql-migrate/...
142
142
```
143
143
144
144
```yml
@@ -149,16 +149,16 @@ development:
149
149
table: migrations
150
150
```
151
151
152
-
### Oracle(godror)
153
-
Oracle Driver is [godror](https://github.com/godror/godror), it is not pure golang code and rely on Oracle Office Client([Instant Client](https://www.oracle.com/database/technologies/instant-client/downloads.html)), more detail information is [godror repo](https://github.com/godror/godror).
152
+
### Oracle(godror)
153
+
Oracle Driver is [godror](https://github.com/godror/godror), it is not pure Go code and relies on Oracle Office Client([Instant Client](https://www.oracle.com/database/technologies/instant-client/downloads.html)), more detailed information is in the [godror repository](https://github.com/godror/godror).
154
154
155
155
#### Install with Oracle support
156
156
157
157
To install the library and command line program, use the following:
158
158
159
159
1. Install sql-migrate
160
160
```bash
161
-
CGO_ENABLED=1 GO111MODULE=on go get -tags godror -v github.com/rubenv/sql-migrate/...
161
+
go get -tags godror -v github.com/rubenv/sql-migrate/...
162
162
```
163
163
164
164
2. Download Oracle Office Client(e.g. macos, click [Instant Client](https://www.oracle.com/database/technologies/instant-client/downloads.html) if you are other system)
0 commit comments