Skip to content
Snippets Groups Projects
Verified Commit c32f631e authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Remove unique constraint on room names.

parent 5b173302
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ class Room(SchoolRelated):
class Meta:
ordering = ['name', 'short_name']
unique_together = [['school', 'short_name'], ['school', 'name']]
unique_together = [['school', 'short_name']]
class Lesson(SchoolRelated):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment