Move to src dir.
[edumed.git] / forum / models.py
diff --git a/forum/models.py b/forum/models.py
deleted file mode 100644 (file)
index 5ec506b..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-# -*- coding: utf-8 -*-
-from django.db import models
-
-import pybb.models
-
-from catalogue.models import Lesson
-
-
-class Topic(models.Model):
-    pybb_topic = models.OneToOneField(pybb.models.Topic, primary_key=True, related_name='edumed_topic')
-    lesson = models.ForeignKey(Lesson, null=True, blank=True, related_name='forum_topics')