feat: remove unused cc_country table

This commit is contained in:
jo 2022-07-08 13:13:54 +02:00 committed by Jonas L
parent f234aa7c42
commit a8cb62586e
21 changed files with 33 additions and 2424 deletions

View file

@ -1,5 +1,4 @@
from .auth import LoginAttempt, UserToken
from .country import Country
from .preference import Preference, StreamSetting
from .role import Role
from .service import ServiceRegister

View file

@ -1,10 +0,0 @@
from django.db import models
class Country(models.Model):
iso_code = models.CharField(primary_key=True, max_length=3, db_column="isocode")
name = models.CharField(max_length=255)
class Meta:
managed = False
db_table = "cc_country"