Add created_on column to database mapping
This commit is contained in:
parent
95f1ce4d89
commit
1a89ceaa5b
1 changed files with 1 additions and 1 deletions
|
@ -3,4 +3,4 @@ from nntp.tiny.db import DatabaseTable
|
|||
class Newsgroup(DatabaseTable):
|
||||
name = 'newsgroup'
|
||||
key = 'id'
|
||||
columns = 'id', 'name', 'description',
|
||||
columns = 'id', 'created_on', 'name', 'description',
|
||||
|
|
Loading…
Add table
Reference in a new issue