feat: remove unused cc_country table
This commit is contained in:
parent
f234aa7c42
commit
a8cb62586e
21 changed files with 33 additions and 2424 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
Loading…
Add table
Add a link
Reference in a new issue