vikunja/pkg/migration/migration.go
konrad 94eea2f32f
Some checks failed
continuous-integration/drone/push Build is failing
Started adding migrations
2019-03-24 21:45:18 +01:00

30 lines
1.1 KiB
Go

// Vikunja is a todo-list application to facilitate your life.
// Copyright 2019 Vikunja and contributors. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package migration
import "src.techknowlogick.com/xormigrate"
// You can get the id string for new migrations by running `date +%Y%m%d%H%M%S` on a unix system.
var migrations []*xormigrate.Migration
func Migrate() {
// Because init() does not guarantee the order in which these are added to the slice,
// we need to sort them to ensure that they are in order
}