rename lib goose to gormgoose

This commit is contained in:
Vladimir Sagan 2016-09-09 16:50:20 +03:00
parent b6684a18ac
commit a4bbc26e1e
16 changed files with 16 additions and 16 deletions

View File

@ -13,7 +13,7 @@ You can manage your database's evolution by creating incremental SQL or Go scrip
This will install the `gorm-goose` binary to your `$GOPATH/bin` directory.
You can also build gorm-goose into your own applications by importing `github.com/Altoros/gorm-goose/lib/goose`.
You can also build gorm-goose into your own applications by importing `github.com/Altoros/gorm-goose/lib/gorm-goose`.
# Usage

View File

@ -7,7 +7,7 @@ import (
"path/filepath"
"time"
"github.com/Altoros/gorm-goose/lib/goose"
goose "github.com/Altoros/gorm-goose/lib/gorm-goose"
)
var createCmd = &Command{

View File

@ -4,7 +4,7 @@ import (
"fmt"
"log"
"github.com/Altoros/gorm-goose/lib/goose"
goose "github.com/Altoros/gorm-goose/lib/gorm-goose"
)
var dbVersionCmd = &Command{

View File

@ -3,7 +3,7 @@ package main
import (
"log"
"github.com/Altoros/gorm-goose/lib/goose"
goose "github.com/Altoros/gorm-goose/lib/gorm-goose"
)
var downCmd = &Command{

View File

@ -3,7 +3,7 @@ package main
import (
"log"
"github.com/Altoros/gorm-goose/lib/goose"
goose "github.com/Altoros/gorm-goose/lib/gorm-goose"
)
var redoCmd = &Command{

View File

@ -6,7 +6,7 @@ import (
"path/filepath"
"time"
"github.com/Altoros/gorm-goose/lib/goose"
goose "github.com/Altoros/gorm-goose/lib/gorm-goose"
"github.com/jinzhu/gorm"
)

View File

@ -3,7 +3,7 @@ package main
import (
"log"
"github.com/Altoros/gorm-goose/lib/goose"
goose "github.com/Altoros/gorm-goose/lib/gorm-goose"
)
var upCmd = &Command{

View File

@ -7,7 +7,7 @@ import (
"strings"
"text/template"
"github.com/Altoros/gorm-goose/lib/goose"
goose "github.com/Altoros/gorm-goose/lib/gorm-goose"
)
// global options. available to any subcommands.

View File

@ -1,4 +1,4 @@
package goose
package gormgoose
import (
"fmt"

View File

@ -1,4 +1,4 @@
package goose
package gormgoose
import (
"os"

View File

@ -1,4 +1,4 @@
package goose
package gormgoose
import (
"errors"

View File

@ -1,4 +1,4 @@
package goose
package gormgoose
import (
"testing"

View File

@ -1,4 +1,4 @@
package goose
package gormgoose
import (
"bytes"

View File

@ -1,4 +1,4 @@
package goose
package gormgoose
import (
"bufio"

View File

@ -1,4 +1,4 @@
package goose
package gormgoose
import (
"strings"

View File

@ -1,4 +1,4 @@
package goose
package gormgoose
import (
"io"