From 6b4617970f2c25ac852daab873f5374d611d5b7e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 31 Jul 2013 10:30:14 +0400 Subject: add text_languagedetect to guess article language for better hyphenation (bump schema) --- schema/ttrss_schema_pgsql.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'schema/ttrss_schema_pgsql.sql') diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 9d0337a07..faa1ac1a0 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -144,6 +144,7 @@ create table ttrss_entries (id serial not null primary key, num_comments integer not null default 0, comments varchar(250) not null default '', plugin_data text, + lang varchar(2), author varchar(250) not null default ''); create index ttrss_entries_guid_index on ttrss_entries(guid); @@ -259,7 +260,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id); create table ttrss_version (schema_version int not null); -insert into ttrss_version values (121); +insert into ttrss_version values (122); create table ttrss_enclosures (id serial not null primary key, content_url text not null, -- cgit v1.2.3-54-g00ecf From e596b5a9dd39b9abdfc2220fca6eda54948da593 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 17 Sep 2013 14:34:39 +0400 Subject: add update script to convert myisam tables to innodb (bump version) --- include/functions.php | 2 +- schema/ttrss_schema_mysql.sql | 2 +- schema/ttrss_schema_pgsql.sql | 2 +- schema/versions/mysql/123.sql | 9 +++++++++ schema/versions/pgsql/123.sql | 5 +++++ 5 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 schema/versions/mysql/123.sql create mode 100644 schema/versions/pgsql/123.sql (limited to 'schema/ttrss_schema_pgsql.sql') diff --git a/include/functions.php b/include/functions.php index 55896b66a..3b1873256 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1,6 +1,6 @@ Date: Sun, 9 Mar 2014 10:49:36 +0400 Subject: schema: add resetpass_token (bump schema) --- include/functions.php | 2 +- schema/ttrss_schema_mysql.sql | 3 ++- schema/ttrss_schema_pgsql.sql | 3 ++- schema/versions/mysql/124.sql | 8 ++++++++ schema/versions/pgsql/124.sql | 8 ++++++++ 5 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 schema/versions/mysql/124.sql create mode 100644 schema/versions/pgsql/124.sql (limited to 'schema/ttrss_schema_pgsql.sql') diff --git a/include/functions.php b/include/functions.php index deddf358f..f03b24327 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1,6 +1,6 @@ Date: Sun, 6 Apr 2014 13:40:16 +0000 Subject: bump schema version to fix resetpass_token created as a wrong type in 124 --- include/functions.php | 2 +- schema/ttrss_schema_mysql.sql | 2 +- schema/ttrss_schema_pgsql.sql | 2 +- schema/versions/mysql/125.sql | 10 ++++++++++ schema/versions/pgsql/125.sql | 5 +++++ 5 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 schema/versions/mysql/125.sql create mode 100644 schema/versions/pgsql/125.sql (limited to 'schema/ttrss_schema_pgsql.sql') diff --git a/include/functions.php b/include/functions.php index 1390d8185..2455bb801 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1,6 +1,6 @@ Date: Tue, 15 Jul 2014 14:53:11 +0200 Subject: Update schema for size support of enclosures --- include/functions.php | 2 +- schema/ttrss_schema_mysql.sql | 4 +++- schema/ttrss_schema_pgsql.sql | 4 +++- schema/versions/mysql/126.sql | 8 ++++++++ schema/versions/pgsql/126.sql | 8 ++++++++ 5 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 schema/versions/mysql/126.sql create mode 100644 schema/versions/pgsql/126.sql (limited to 'schema/ttrss_schema_pgsql.sql') diff --git a/include/functions.php b/include/functions.php index b5d52ccb2..cb91b637e 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1,6 +1,6 @@