Create the feedback table in pg

This commit is contained in:
David Dworken 2022-11-20 00:12:41 -08:00
parent 4e48f9351e
commit 8dd9c1d9e4
No known key found for this signature in database

View File

@ -446,6 +446,7 @@ func OpenDB() (*gorm.DB, error) {
db.AutoMigrate(&UsageData{})
db.AutoMigrate(&shared.DumpRequest{})
db.AutoMigrate(&shared.DeletionRequest{})
db.AutoMigrate(&shared.Feedback{})
return db, nil
}