People: Upgrade temp dev table names #22

This commit is contained in:
Michael Mayer 2021-09-03 16:26:01 +02:00
parent 6ad1fffd77
commit 57b79f983a
3 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ var Faceless = []string{""}
// TableName returns the entity database table name.
func (Face) TableName() string {
return "faces_dev6"
return "faces_dev7"
}
// NewFace returns a new face.

View File

@ -57,7 +57,7 @@ type Marker struct {
// TableName returns the entity database table name.
func (Marker) TableName() string {
return "markers_dev6"
return "markers_dev7"
}
// BeforeCreate creates a random UID if needed before inserting a new row to the database.

View File

@ -42,7 +42,7 @@ type Subject struct {
// TableName returns the entity database table name.
func (Subject) TableName() string {
return "subjects_dev6"
return "subjects_dev7"
}
// BeforeCreate creates a random UID if needed before inserting a new row to the database.