summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-11-16 06:11:59 +0100
committerAndrew Dolgov <[email protected]>2007-11-16 06:11:59 +0100
commit54a3d3cf51ccc7e0ce838a2c982d06bca29a2bbb (patch)
treecc6cbc0d460e1ad596285c0eda97de2fc8aae772 /schema/ttrss_schema_mysql.sql
parente553f0a6d8c9d9fc0ec34314c0edb099d069ded5 (diff)
schema: add created field to ttrss_users
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index cf29e0121..970afb06e 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -41,6 +41,7 @@ create table ttrss_users (id integer primary key not null auto_increment,
email varchar(250) not null default '',
email_digest bool not null default false,
last_digest_sent datetime default null,
+ created datetime default null,
index (theme_id),
foreign key (theme_id) references ttrss_themes(id)) TYPE=InnoDB;