101.sql 345 B

123456789101112
  1. begin;
  2. create table ttrss_plugin_storage (
  3. id integer not null auto_increment primary key,
  4. name varchar(100) not null,
  5. owner_uid integer not null,
  6. content longtext not null,
  7. foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
  8. update ttrss_version set schema_version = 101;
  9. commit;