Backend: Remove old fixtures from config/db.go

This commit is contained in:
Theresa Gresch 2020-05-01 14:17:15 +02:00
parent 2a21bc5158
commit f5a1d76748

View file

@ -65,11 +65,6 @@ func (c *Config) InitDb() {
func (c *Config) ResetDb(testFixtures bool) {
entity.SetDbProvider(c)
entity.ResetDb(testFixtures)
// TODO: Remove when new test fixtures are ready
if testFixtures {
c.ImportSQL(c.ExamplesPath() + "/fixtures.sql")
}
}
// connectToDatabase establishes a database connection.