Skip to content

Commit

Permalink
change event date
Browse files Browse the repository at this point in the history
  • Loading branch information
HyggeHalcyon committed May 8, 2024
1 parent e97c077 commit ebaa6e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/seeder/seeders/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func EventSeeder(db *gorm.DB) error {
WithKit: &False,
Capacity: constants.MainEventPreSaleNoMerchCapacity,
Registers: 0,
StartDate: time.Date(2024, time.May, 8, 15, 0, 0, 0, time.Now().UTC().Location()),
StartDate: time.Date(2024, time.May, 9, 15, 0, 0, 0, time.Now().UTC().Location()),
EndDate: time.Date(2024, time.May, 10, 15, 0, 0, 0, time.Now().UTC().Location()),
}, entity.Event{
ID: uuid.MustParse(constants.MainEventNormalNoMerchID),
Expand All @@ -76,7 +76,7 @@ func EventSeeder(db *gorm.DB) error {
WithKit: &True,
Capacity: constants.MainEventPreSaleWithMerchCapacity,
Registers: 0,
StartDate: time.Date(2024, time.May, 8, 15, 0, 0, 0, time.Now().UTC().Location()),
StartDate: time.Date(2024, time.May, 9, 15, 0, 0, 0, time.Now().UTC().Location()),
EndDate: time.Date(2024, time.May, 10, 15, 0, 0, 0, time.Now().UTC().Location()),
}, entity.Event{
ID: uuid.MustParse(constants.MainEventNormalWithMerchID),
Expand Down

0 comments on commit ebaa6e1

Please sign in to comment.