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

schema: add created field to ttrss_users

This commit is contained in:
Andrew Dolgov
2007-11-16 06:11:59 +01:00
parent e553f0a6d8
commit 54a3d3cf51
6 changed files with 21 additions and 7 deletions

View File

@@ -1,3 +1,6 @@
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_UNREAD_ARTICLES', 1, 'true', 'Purge unread articles',3);
alter table ttrss_users add column created timestamp;
alter table ttrss_users alter column created set default null;
update ttrss_version set schema_version = 26;