1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-22 06:39:43 +02:00

bumped version

This commit is contained in:
Harvey Kandola 2017-08-22 17:23:30 +01:00
parent 07c8238664
commit c235fb569e
9 changed files with 819 additions and 664 deletions

View file

@ -35,11 +35,8 @@ type migrationsT []string
// migrations returns a list of the migrations to update the database as required for this version of the code.
func migrations(lastMigration string) (migrationsT, error) {
lastMigration = strings.TrimPrefix(strings.TrimSuffix(lastMigration, `"`), `"`)
//fmt.Println(`DEBUG Migrations("`+lastMigration+`")`)
files, err := web.AssetDir(migrationsDir)
if err != nil {
return nil, err