summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-08-29 08:34:35 +0100
committerAndrew Dolgov <[email protected]>2008-08-29 08:34:35 +0100
commit782ddd701480eb36767d94a1549f956c2ab8cc35 (patch)
tree169b75425b69f0e39fa85bdf165bf50a189e84de /schema/ttrss_schema_mysql.sql
parent4f3760433ff6952851436b79a21f71135fa21b9e (diff)
implement (incomplete) sortable feedlist
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 2bf8da59d..6b003439f 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -53,6 +53,7 @@ create table ttrss_feed_categories(id integer not null primary key auto_incremen
owner_uid integer not null,
title varchar(200) not null,
collapsed bool not null default false,
+ order_id integer not null default 0,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
@@ -209,7 +210,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
-insert into ttrss_version values (40);
+insert into ttrss_version values (41);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,