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-6
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
> SQL Schema migration tool for [Go](https://golang.org/). Based on [gorp](https://github.com/go-gorp/gorp) and [goose](https://bitbucket.org/liamstask/goose).
Using [modl](https://github.com/jmoiron/modl)? Check out [modl-migrate](https://github.com/rubenv/modl-migrate).
8
8
@@ -22,7 +22,7 @@ Using [modl](https://github.com/jmoiron/modl)? Check out [modl-migrate](https://
22
22
To install the library and command line program, use the following:
23
23
24
24
```bash
25
-
go get -v github.com/rubenv/sql-migrate/...
25
+
go get -v github.com/aman00323/sql-migrate/...
26
26
```
27
27
28
28
## Usage
@@ -138,7 +138,7 @@ Oracle Driver is [oci8](https://github.com/mattn/go-oci8), it is not pure Go cod
138
138
To install the library and command line program, use the following:
139
139
140
140
```bash
141
-
go get -tags oracle -v github.com/rubenv/sql-migrate/...
141
+
go get -tags oracle -v github.com/aman00323/sql-migrate/...
142
142
```
143
143
144
144
```yml
@@ -158,7 +158,7 @@ To install the library and command line program, use the following:
158
158
159
159
1. Install sql-migrate
160
160
```bash
161
-
go get -tags godror -v github.com/rubenv/sql-migrate/...
161
+
go get -tags godror -v github.com/aman00323/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)
@@ -185,7 +185,7 @@ development:
185
185
Import sql-migrate into your application:
186
186
187
187
```go
188
-
import"github.com/rubenv/sql-migrate"
188
+
import"github.com/aman00323/sql-migrate"
189
189
```
190
190
191
191
Set up a source of migrations, this can be from memory, from a set of files, from bindata (more on that later), or from any library that implements [`http.FileSystem`](https://godoc.org/net/http#FileSystem):
Copy file name to clipboardExpand all lines: sqlparse/sqlparse.go
+3-3
Original file line number
Diff line number
Diff line change
@@ -35,11 +35,11 @@ var (
35
35
funcerrNoTerminator() error {
36
36
iflen(LineSeparator) ==0 {
37
37
returnerrors.New(`ERROR: The last statement must be ended by a semicolon or '-- +migrate StatementEnd' marker.
38
-
See https://github.com/rubenv/sql-migrate for details.`)
38
+
See https://github.com/aman00323/sql-migrate for details.`)
39
39
}
40
40
41
41
returnerrors.New(fmt.Sprintf(`ERROR: The last statement must be ended by a semicolon, a line whose contents are %q, or '-- +migrate StatementEnd' marker.
42
-
See https://github.com/rubenv/sql-migrate for details.`, LineSeparator))
42
+
See https://github.com/aman00323/sql-migrate for details.`, LineSeparator))
43
43
}
44
44
45
45
// Checks the line to see if the line has a statement-ending semicolon
0 commit comments