mirror of
https://github.com/heyarne/berliner-winter.git
synced 2026-05-06 19:23:39 +02:00
Remove field 'addtional_place' because it can't be reliably parsed
This commit is contained in:
parent
c1ac5e5ed4
commit
98d1e21a90
3 changed files with 4 additions and 15 deletions
|
|
@ -13,11 +13,10 @@ class Article(BaseModel):
|
|||
date = DateField(index=True)
|
||||
month_only = BooleanField(default=False)
|
||||
place = CharField()
|
||||
additional_place = CharField(null=True)
|
||||
description = TextField()
|
||||
hash = BlobField(index=True)
|
||||
|
||||
# Set up the tables
|
||||
def create_tables():
|
||||
database.connect()
|
||||
database.create_tables([Article])
|
||||
db.connect()
|
||||
db.create_tables([Article])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue