101.sql 262 B

1234567891011
  1. begin;
  2. create table ttrss_plugin_storage (
  3. id serial not null primary key,
  4. name varchar(100) not null,
  5. owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
  6. content text not null);
  7. update ttrss_version set schema_version = 101;
  8. commit;