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