navidrome/db/migrations/20200411164603_add_created_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
526 B
Go
Raw Normal View History

package migrations
import (
2023-11-27 20:46:44 +01:00
"context"
"database/sql"
2020-04-26 18:53:36 +02:00
2023-04-04 15:57:00 +02:00
"github.com/pressly/goose/v3"
)
func init() {
2023-11-27 20:46:44 +01:00
goose.AddMigrationContext(Up20200411164603, Down20200411164603)
}
2023-11-27 20:46:44 +01:00
func Up20200411164603(_ context.Context, tx *sql.Tx) error {
_, err := tx.Exec(`
alter table playlist
add created_at datetime;
alter table playlist
add updated_at datetime;
update playlist
set created_at = datetime('now'), updated_at = datetime('now');
`)
return err
}
2023-11-27 20:46:44 +01:00
func Down20200411164603(_ context.Context, tx *sql.Tx) error {
return nil
}