File tree 19 files changed +35
-20
lines changed
19 files changed +35
-20
lines changed Original file line number Diff line number Diff line change 6
6
"encoding/json"
7
7
"errors"
8
8
9
- "github.com/volatiletech/null/convert"
9
+ "github.com/volatiletech/null/v8/ convert"
10
10
)
11
11
12
12
// Bool is a nullable bool.
Original file line number Diff line number Diff line change 5
5
"database/sql/driver"
6
6
"encoding/json"
7
7
8
- "github.com/volatiletech/null/convert"
8
+ "github.com/volatiletech/null/v8/ convert"
9
9
)
10
10
11
11
// NullBytes is a global byte slice of JSON null
Original file line number Diff line number Diff line change 6
6
"encoding/json"
7
7
"strconv"
8
8
9
- "github.com/volatiletech/null/convert"
9
+ "github.com/volatiletech/null/v8/ convert"
10
10
)
11
11
12
12
// Float32 is a nullable float32.
Original file line number Diff line number Diff line change 6
6
"encoding/json"
7
7
"strconv"
8
8
9
- "github.com/volatiletech/null/convert"
9
+ "github.com/volatiletech/null/v8/ convert"
10
10
)
11
11
12
12
// Float64 is a nullable float64.
Original file line number Diff line number Diff line change
1
+ module github.com/volatiletech/null/v8
2
+
3
+ go 1.14
4
+
5
+ require github.com/volatiletech/randomize v0.0.1
Original file line number Diff line number Diff line change
1
+ github.com/friendsofgo/errors v0.9.2 /go.mod h1:yCvFW5AkDIL9qn7suHVLiI/gH228n7PC4Pn44IGoTOI =
2
+ github.com/gofrs/uuid v3.2.0+incompatible /go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM =
3
+ github.com/volatiletech/inflect v0.0.1 h1:2a6FcMQyhmPZcLa+uet3VJ8gLn/9svWhJxJYwvE8KsU =
4
+ github.com/volatiletech/inflect v0.0.1 /go.mod h1:IBti31tG6phkHitLlr5j7shC5SOo//x0AjDzaJU1PLA =
5
+ github.com/volatiletech/randomize v0.0.1 h1:eE5yajattWqTB2/eN8df4dw+8jwAzBtbdo5sbWC4nMk =
6
+ github.com/volatiletech/randomize v0.0.1 /go.mod h1:GN3U0QYqfZ9FOJ67bzax1cqZ5q2xuj2mXrXBjWaRTlY =
7
+ github.com/volatiletech/strmangle v0.0.1 h1:UKQoHmY6be/R3tSvD2nQYrH41k43OJkidwEiC74KIzk =
8
+ github.com/volatiletech/strmangle v0.0.1 /go.mod h1:F6RA6IkB5vq0yTG4GQ0UsbbRcl3ni9P76i+JrTBKFFg =
9
+ golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 h1:9zdDQZ7Thm29KFXgAX/+yaf3eVbP7djjWp/dXAppNCc =
10
+ golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 /go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0 =
Original file line number Diff line number Diff line change 7
7
"math"
8
8
"strconv"
9
9
10
- "github.com/volatiletech/null/convert"
10
+ "github.com/volatiletech/null/v8/ convert"
11
11
)
12
12
13
13
// Int is an nullable int.
Original file line number Diff line number Diff line change 8
8
"math"
9
9
"strconv"
10
10
11
- "github.com/volatiletech/null/convert"
11
+ "github.com/volatiletech/null/v8/ convert"
12
12
)
13
13
14
14
// Int16 is an nullable int16.
Original file line number Diff line number Diff line change 8
8
"math"
9
9
"strconv"
10
10
11
- "github.com/volatiletech/null/convert"
12
- "github.com/volatiletech/sqlboiler/ randomize"
11
+ "github.com/volatiletech/null/v8/ convert"
12
+ "github.com/volatiletech/randomize"
13
13
)
14
14
15
15
// Int32 is an nullable int32.
Original file line number Diff line number Diff line change 6
6
"encoding/json"
7
7
"strconv"
8
8
9
- "github.com/volatiletech/null/convert"
9
+ "github.com/volatiletech/null/v8/ convert"
10
10
)
11
11
12
12
// Int64 is an nullable int64.
Original file line number Diff line number Diff line change 8
8
"math"
9
9
"strconv"
10
10
11
- "github.com/volatiletech/null/convert"
11
+ "github.com/volatiletech/null/v8/ convert"
12
12
)
13
13
14
14
// Int8 is an nullable int8.
Original file line number Diff line number Diff line change 7
7
"errors"
8
8
"fmt"
9
9
10
- "github.com/volatiletech/null/convert"
11
- "github.com/volatiletech/sqlboiler/ randomize"
10
+ "github.com/volatiletech/null/v8/ convert"
11
+ "github.com/volatiletech/randomize"
12
12
)
13
13
14
14
// JSON is a nullable []byte.
Original file line number Diff line number Diff line change 5
5
"database/sql/driver"
6
6
"encoding/json"
7
7
8
- "github.com/volatiletech/null/convert"
9
- "github.com/volatiletech/sqlboiler/ randomize"
8
+ "github.com/volatiletech/null/v8/ convert"
9
+ "github.com/volatiletech/randomize"
10
10
)
11
11
12
12
// String is a nullable string. It supports SQL and JSON serialization.
Original file line number Diff line number Diff line change 6
6
"fmt"
7
7
"time"
8
8
9
- "github.com/volatiletech/sqlboiler/ randomize"
9
+ "github.com/volatiletech/randomize"
10
10
)
11
11
12
12
// Time is a nullable time.Time. It supports SQL and JSON serialization.
Original file line number Diff line number Diff line change 6
6
"encoding/json"
7
7
"strconv"
8
8
9
- "github.com/volatiletech/null/convert"
9
+ "github.com/volatiletech/null/v8/ convert"
10
10
)
11
11
12
12
// Uint is an nullable uint.
Original file line number Diff line number Diff line change 8
8
"math"
9
9
"strconv"
10
10
11
- "github.com/volatiletech/null/convert"
11
+ "github.com/volatiletech/null/v8/ convert"
12
12
)
13
13
14
14
// Uint16 is an nullable uint16.
Original file line number Diff line number Diff line change 8
8
"math"
9
9
"strconv"
10
10
11
- "github.com/volatiletech/null/convert"
11
+ "github.com/volatiletech/null/v8/ convert"
12
12
)
13
13
14
14
// Uint32 is an nullable uint32.
Original file line number Diff line number Diff line change 6
6
"encoding/json"
7
7
"strconv"
8
8
9
- "github.com/volatiletech/null/convert"
9
+ "github.com/volatiletech/null/v8/ convert"
10
10
)
11
11
12
12
// Uint64 is an nullable uint64.
Original file line number Diff line number Diff line change 8
8
"math"
9
9
"strconv"
10
10
11
- "github.com/volatiletech/null/convert"
11
+ "github.com/volatiletech/null/v8/ convert"
12
12
)
13
13
14
14
// Uint8 is an nullable uint8.
You can’t perform that action at this time.
0 commit comments