Skip to content

Commit c29731d

Browse files
author
Alan Shaw
committed
fix: not not null
1 parent 5d52944 commit c29731d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datastore_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func newDS(t *testing.T, withPool bool) (*Datastore, func()) {
7575
if err != nil {
7676
t.Fatal(err)
7777
}
78-
_, err = conn.Exec(context.Background(), "CREATE TABLE IF NOT EXISTS blocks (key TEXT NOT NULL UNIQUE, data BYTEA NOT NULL)")
78+
_, err = conn.Exec(context.Background(), "CREATE TABLE IF NOT EXISTS blocks (key TEXT NOT NULL UNIQUE, data BYTEA)")
7979
if err != nil {
8080
t.Fatal(err)
8181
}

0 commit comments

Comments
 (0)