From f36bb388db209680bab543002d5c4f8d36a4a0e6 Mon Sep 17 00:00:00 2001
From: Christian Pointner <equinox@helsinki.at>
Date: Sun, 11 Aug 2019 10:02:26 +0200
Subject: [PATCH] added playout-mode to playlist

---
 store/migrations.go | 30 ++++++++++++++++++++++++++++++
 store/types.go      |  1 +
 2 files changed, 31 insertions(+)

diff --git a/store/migrations.go b/store/migrations.go
index d02e073..b86d2f8 100644
--- a/store/migrations.go
+++ b/store/migrations.go
@@ -144,6 +144,36 @@ var (
 				return nil
 			},
 		},
+		{
+			ID: "201908110945",
+			Migrate: func(tx *gorm.DB) error {
+
+				type PlaylistEntry struct {
+					ID         uint64  `json:"-" gorm:"primary_key"`
+					PlaylistID uint64  `json:"-" gorm:"not null;index;unique_index:unique_playlist_line_numbers"`
+					LineNum    uint    `json:"-" gorm:"not null;unique_index:unique_playlist_line_numbers"`
+					URI        string  `json:"uri" gorm:"size:1024"`
+					File       *File   `json:"file,omitempty" gorm:"association_autoupdate:false;association_autocreate:false"`
+					FileID     *uint64 `json:"-" gorm:"index"`
+				}
+
+				type Playlist struct {
+					ID          uint64          `json:"id" gorm:"primary_key"`
+					CreatedAt   time.Time       `json:"created"`
+					UpdatedAt   time.Time       `json:"updated"`
+					Description string          `json:"description"`
+					PlayoutMode string          `json:"playout-mode"`
+					ShowName    string          `json:"show" gorm:"not null;index"`
+					Show        Show            `json:"-" gorm:"association_foreignkey:Name"`
+					Entries     []PlaylistEntry `json:"entries,omitempty"`
+				}
+
+				return tx.AutoMigrate(&Playlist{}).Error
+			},
+			Rollback: func(tx *gorm.DB) error {
+				return tx.Table("playlists").DropColumn("playout_mode").Error
+			},
+		},
 	}
 )
 
diff --git a/store/types.go b/store/types.go
index 6d82447..0e73855 100644
--- a/store/types.go
+++ b/store/types.go
@@ -210,6 +210,7 @@ type Playlist struct {
 	CreatedAt   time.Time       `json:"created"`
 	UpdatedAt   time.Time       `json:"updated"`
 	Description string          `json:"description"`
+	PlayoutMode string          `json:"playout-mode" gorm:"not null;default:'linear'"`
 	ShowName    string          `json:"show" gorm:"not null;index"`
 	Show        Show            `json:"-" gorm:"association_foreignkey:Name"`
 	Entries     []PlaylistEntry `json:"entries,omitempty"`
-- 
GitLab