remove session table

This commit is contained in:
celogeek 2022-05-26 23:58:51 +02:00
parent ff3931f083
commit 54c75f24e1
Signed by: celogeek
GPG Key ID: E6B7BDCFC446233A

View File

@ -33,7 +33,6 @@ func (d *DBConfig) DSN() string {
func (s *Service) Migrate() { func (s *Service) Migrate() {
tx := s.DB tx := s.DB
tx.AutoMigrate(&Account{}) tx.AutoMigrate(&Account{})
tx.AutoMigrate(&Session{})
tx.AutoMigrate(&File{}) tx.AutoMigrate(&File{})
} }