1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-30 22:41:29 +00:00

schema: add email column to ttrss_users

This commit is contained in:
Andrew Dolgov
2005-12-20 07:23:33 +01:00
parent d2afdfa09f
commit 8629e09d9b
4 changed files with 16 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ create table ttrss_users (id integer primary key not null auto_increment,
last_login datetime default null,
access_level integer not null default 0,
theme_id integer default null,
email varchar(250) not null default '',
index (theme_id),
foreign key (theme_id) references ttrss_themes(id)) TYPE=InnoDB;