Commit 89e8889b authored by Vasyl Bodnaruk's avatar Vasyl Bodnaruk

Add model TagType for split tags

parent b0d8e067
......@@ -418,6 +418,14 @@ class WpEsiTagNews(models.Model):
unique_together = (('tag_id', 'news_id'),)
class WpEsiTagType(models.Model):
label = models.CharField(max_length=255)
class Meta:
managed = False
db_table = 'wp_esi_tag_type'
class WpEsiTechnology(models.Model):
name = models.CharField(max_length=255)
description = models.TextField()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment