mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
Microsoft SQL Server driver and prep
This commit is contained in:
parent
e6335dd58c
commit
deb579d8ad
63 changed files with 73767 additions and 13 deletions
|
@ -46,6 +46,11 @@ func LoadScripts() (s Scripts, err error) {
|
|||
if err != nil {
|
||||
return
|
||||
}
|
||||
// PostgreSQL
|
||||
s.SQLServer, err = loadFiles(fmt.Sprintf("%s/sqlserver", assetDir))
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
return s, nil
|
||||
}
|
||||
|
@ -57,7 +62,7 @@ func SpecificScripts(runtime *env.Runtime, all Scripts) (s []Script) {
|
|||
return all.MySQL
|
||||
case env.StoreTypePostgreSQL:
|
||||
return all.PostgreSQL
|
||||
case env.StoreTypeMSSQL:
|
||||
case env.StoreTypeSQLServer:
|
||||
return all.SQLServer
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue