]> git.wh0rd.org - tt-rss.git/blobdiff - schema/ttrss_schema_mysql.sql
update schema, new option: DATABASE_BACKED_SESSIONS
[tt-rss.git] / schema / ttrss_schema_mysql.sql
index 5032334c82b2f91758f8ec9f8dad9e265da3bc44..540fc0f22afdd0db17e5760b2f87c2ad110201e0 100644 (file)
@@ -256,8 +256,7 @@ create table ttrss_scheduled_updates (id integer not null primary key auto_incre
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
        foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE) TYPE=InnoDB;
 
-create table ttrss_sessions (int_id integer not null primary key auto_increment,
-       id varchar(300) unique not null,
+create table ttrss_sessions (id varchar(300) unique not null primary key,
        data text,
        expire integer not null,
        index (id),