Error during preflight check for storagenode databases: storage node preflight database error: used_serial

hi, i have problem

2020-03-12T13:09:55.236Z INFO version running on version v0.34.6
2020-03-12T13:09:55.245Z INFO db.migration Database Version {“version”: 31}
Error: Error during preflight check for storagenode databases: storage node preflight database error: used_serial: expected schema does not match actual: &dbschema.Schema{
Tables: *dbschema.Table{

  •           &{
    
  •                   Name: "test_table",
    
  •                   Columns: []*dbschema.Column{
    
  •                           &{Name: "id", Type: "int"},
    
  •                           &{Name: "name", Type: "varchar(30)", IsNullable: true},
    
  •                   },
    
  •                   PrimaryKey: []string{"id"},
    
  •           },
              &{Name: "used_serial_", Columns: []*dbschema.Column{&{Name: "expiration", Type: "TIMESTAMP"}, &{Name: "satellite_id", Type: "BLOB"}, &{Name: "serial_number", Type: "BLOB"}}},
      },
      Indexes: []*dbschema.Index{&{Name: "idx_used_serial_", Table: "used_serial_", Columns: []string{"expiration"}}, &{Name: "pk_used_serial_", Table: "used_serial_", Columns: []string{"satellite_id", "serial_number"}}},
    

    }

      storj.io/storj/storagenode/storagenodedb.(*DB).Preflight:301
      main.cmdRun:198
      storj.io/storj/pkg/process.cleanup.func1.2:312
      storj.io/storj/pkg/process.cleanup.func1:330
      github.com/spf13/cobra.(*Command).execute:826
      github.com/spf13/cobra.(*Command).ExecuteC:914
      github.com/spf13/cobra.(*Command).Execute:864
      storj.io/storj/pkg/process.ExecWithCustomConfig:84
      storj.io/storj/pkg/process.ExecCustomDebug:66
      main.main:328
      runtime.main:203

Hello @madest,
Welcome to the forum!

Please, install locally or use a docker container with sqlite3 (for ref: https://support.storj.io/hc/en-us/articles/360029309111-How-to-fix-a-database-disk-image-is-malformed-).
Stop the storagenode and execute:

sqlite3 used_serial.db
drop table test_table;
.exit

Then start the storagenode back