mirror of
https://gitlab.nic.cz/knot/knot-dns.git
synced 2026-04-26 00:27:20 -04:00
sql import: fix db schema
This commit is contained in:
parent
3335831f12
commit
b03e01198f
1 changed files with 4 additions and 4 deletions
|
|
@ -44,9 +44,9 @@ class Domains(SQLObject):
|
|||
# id = IntCol() # implicitly there
|
||||
name = StringCol()
|
||||
master = StringCol()
|
||||
last_check = StringCol()
|
||||
last_check = IntCol()
|
||||
type = StringCol()
|
||||
notified_serial = StringCol()
|
||||
notified_serial = IntCol()
|
||||
account = StringCol()
|
||||
|
||||
class Records(SQLObject):
|
||||
|
|
@ -57,9 +57,9 @@ class Records(SQLObject):
|
|||
content = StringCol()
|
||||
ttl = IntCol()
|
||||
prio = IntCol()
|
||||
change_date = StringCol()
|
||||
change_date = IntCol()
|
||||
ordername = StringCol()
|
||||
auth = StringCol()
|
||||
auth = IntCol()
|
||||
|
||||
class Changes(SQLObject):
|
||||
# id = IntCol() # implicitly there
|
||||
|
|
|
|||
Loading…
Reference in a new issue