]> git.wh0rd.org - tt-rss.git/blob - schema/versions/pgsql/101.sql
add plugin storage table to schema; add ability to clear plugin data
[tt-rss.git] / schema / versions / pgsql / 101.sql
1 begin;
2
3 create table ttrss_plugin_storage (
4 id serial not null primary key,
5 name varchar(100) not null,
6 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
7 content text not null);
8
9 update ttrss_version set schema_version = 101;
10
11 commit;