Add created_on column to newsgroup table
This commit is contained in:
parent
696de54c8d
commit
9a8471a78c
1 changed files with 1 additions and 0 deletions
|
@ -2,6 +2,7 @@ begin transaction;
|
|||
|
||||
create table newsgroup (
|
||||
id INTEGER PRIMARY KEY NOT NULL,
|
||||
created_on DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
name TEXT NOT NULL,
|
||||
description TEXT NOT NULL
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue