From 5e16a77b7bb7329e49c2db8abe9992a56cf59431 Mon Sep 17 00:00:00 2001 From: konrad Date: Sun, 24 Mar 2019 20:53:06 +0100 Subject: [PATCH] Added bare migration --- pkg/cmd/migrate.go | 34 ++++++++++++++++++++++++++++++++++ pkg/migration/migration.go | 21 +++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 pkg/cmd/migrate.go create mode 100644 pkg/migration/migration.go diff --git a/pkg/cmd/migrate.go b/pkg/cmd/migrate.go new file mode 100644 index 000000000..79cfda698 --- /dev/null +++ b/pkg/cmd/migrate.go @@ -0,0 +1,34 @@ +// 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 . + +package cmd + +import ( + "code.vikunja.io/api/pkg/migration" + "github.com/spf13/cobra" +) + +func init() { + rootCmd.AddCommand(migrateCmd) +} + +var migrateCmd = &cobra.Command{ + Use: "migrate", + Short: "Run all database migrations which didn't already run.", + Run: func(cmd *cobra.Command, args []string) { + migration.Migrate() + }, +} diff --git a/pkg/migration/migration.go b/pkg/migration/migration.go new file mode 100644 index 000000000..410a7872b --- /dev/null +++ b/pkg/migration/migration.go @@ -0,0 +1,21 @@ +// 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 . + +package migration + +func Migrate() { + +}