Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Oct 23, 2023
1 parent 784d8d7 commit 41938b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/backend/migration/20230905100000.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func (f *Files) TableName() string {
// makes the Cover FK into a not null field
// renames kino -> movie
// fixes the id being named kino
func (m TumDBMigrator) migrate20230905100000() *gormigrate.Migration {
func migrate20230905100000() *gormigrate.Migration {
return &gormigrate.Migration{
ID: "migrate20230905100000",
Migrate: func(tx *gorm.DB) error {
Expand Down
2 changes: 1 addition & 1 deletion server/backend/migration/20230912000000.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

// migrate20230912000000
// Removes ticketsales from the db
func (m TumDBMigrator) migrate20230912000000() *gormigrate.Migration {
func migrate20230912000000() *gormigrate.Migration {
return &gormigrate.Migration{
ID: "20230912000000",
Migrate: func(tx *gorm.DB) error {
Expand Down
2 changes: 1 addition & 1 deletion server/backend/migration/20231023000000.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type device2stats struct {

// migrate20231023000000
// Removes all traces of the chat from the database.
func (m TumDBMigrator) migrate20231023000000() *gormigrate.Migration {
func migrate20231023000000() *gormigrate.Migration {
return &gormigrate.Migration{
ID: "20231023000000",
Migrate: func(tx *gorm.DB) error {
Expand Down

0 comments on commit 41938b9

Please sign in to comment.