1
0
Fork 0
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:
Harvey Kandola 2019-03-26 08:51:02 -04:00
parent e6335dd58c
commit deb579d8ad
63 changed files with 73767 additions and 13 deletions

View file

@ -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
}