Skip to content

Commit d54a385

Browse files
author
Bojan Jovanovic
committed
Better conf. switching
1 parent 351a2ea commit d54a385

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from django.db import models
2+
from pyconbalkan.conference.models import Conference
3+
4+
5+
class AbstractConference(models.Model):
6+
conference = models.ForeignKey(Conference, on_delete=models.CASCADE)
7+
8+
class Meta:
9+
abstract = True

0 commit comments

Comments
 (0)