summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-23 15:21:59 +0100
committerAndrew Dolgov <[email protected]>2005-11-23 15:21:59 +0100
commit17095c5a0e0174553d3fc8716943933e7f64ffd7 (patch)
treee9887a31981354a876c11aad6e8106e8efc59973 /schema
parentf557cd78ff5d9fba54eb2e660a2a5fa512b0bd90 (diff)
fix ttrss_feed_categories auto increment on mysql
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 9c5f97186..b506a5d1c 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -22,7 +22,7 @@ create table ttrss_users (id integer primary key not null auto_increment,
insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);
-create table ttrss_feed_categories(id integer not null primary key,
+create table ttrss_feed_categories(id integer not null primary key auto_increment,
owner_uid integer not null,
title varchar(200) not null,
index(owner_uid),