mirror of
https://github.com/mattermost/focalboard.git
synced 2024-11-27 08:31:20 +02:00
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
(cherry picked from commit 824724387c
)
Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
This commit is contained in:
parent
84932d4f25
commit
1d14e24e9f
2
Makefile
2
Makefile
@ -12,7 +12,7 @@ ifeq ($(BUILD_NUMBER),)
|
||||
BUILD_DATE := n/a
|
||||
endif
|
||||
|
||||
BUILD_TAGS += json1
|
||||
BUILD_TAGS += json1 sqlite3
|
||||
|
||||
LDFLAGS += -X "github.com/mattermost/focalboard/server/model.BuildNumber=$(BUILD_NUMBER)"
|
||||
LDFLAGS += -X "github.com/mattermost/focalboard/server/model.BuildDate=$(BUILD_DATE)"
|
||||
|
@ -10,7 +10,6 @@ import (
|
||||
sq "github.com/Masterminds/squirrel"
|
||||
_ "github.com/lib/pq" // postgres driver
|
||||
"github.com/mattermost/focalboard/server/model"
|
||||
_ "github.com/mattn/go-sqlite3" // sqlite driver
|
||||
|
||||
"github.com/mattermost/mattermost-server/v6/shared/mlog"
|
||||
)
|
||||
|
@ -12,7 +12,6 @@ import (
|
||||
sq "github.com/Masterminds/squirrel"
|
||||
_ "github.com/lib/pq" // postgres driver
|
||||
"github.com/mattermost/focalboard/server/model"
|
||||
_ "github.com/mattn/go-sqlite3" // sqlite driver
|
||||
|
||||
"github.com/mattermost/mattermost-server/v6/shared/mlog"
|
||||
)
|
||||
|
5
server/services/store/sqlstore/sqlite.go
Normal file
5
server/services/store/sqlstore/sqlite.go
Normal file
@ -0,0 +1,5 @@
|
||||
//go:build sqlite3
|
||||
|
||||
package sqlstore
|
||||
|
||||
import _ "github.com/mattn/go-sqlite3" // sqlite driver
|
Loading…
Reference in New Issue
Block a user