5648c9616e
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
27 lines
644 B
Go
27 lines
644 B
Go
package entity
|
|
|
|
// CreateTestFixtures inserts all known entities into the database for testing.
|
|
func CreateTestFixtures() {
|
|
if err := Admin.SetPassword("photoprism"); err != nil {
|
|
log.Error(err)
|
|
}
|
|
|
|
CreateLabelFixtures()
|
|
CreateCameraFixtures()
|
|
CreateCountryFixtures()
|
|
CreatePhotoFixtures()
|
|
CreateAlbumFixtures()
|
|
CreateAccountFixtures()
|
|
CreateLinkFixtures()
|
|
CreatePhotoAlbumFixtures()
|
|
CreateFolderFixtures()
|
|
CreateFileFixtures()
|
|
CreateKeywordFixtures()
|
|
CreatePhotoKeywordFixtures()
|
|
CreateCategoryFixtures()
|
|
CreateCellFixtures()
|
|
CreatePlaceFixtures()
|
|
CreateFileShareFixtures()
|
|
CreateFileSyncFixtures()
|
|
CreateLensFixtures()
|
|
}
|