aboutsummaryrefslogtreecommitdiffstats
path: root/library/simplepie/db.sql
diff options
context:
space:
mode:
authorKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-04-03 22:08:32 +0200
committerKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-04-15 00:41:42 +0200
commitb6459e617289f729da1372b40f5a35940943f36d (patch)
tree8a27cac30b34a27fd91d426b82d429bef1ed1934 /library/simplepie/db.sql
parentb4f65840d166db6c0244a773e8fe2693cb3f5d2e (diff)
downloadvolse-hubzilla-b6459e617289f729da1372b40f5a35940943f36d.tar.gz
volse-hubzilla-b6459e617289f729da1372b40f5a35940943f36d.tar.bz2
volse-hubzilla-b6459e617289f729da1372b40f5a35940943f36d.zip
:arrow_up: Update SimplePie library.
As a follow up to issue #699 update SimplePie from 1.2.1-dev (around 6years old) to current git master (1.4.4-dev). We use the master branch until the next release because it contains our patch for enclosure titles already. The other patches in the library from us can be done by configuring the SimplePie object in our code instead. Used composer to manage this library and use class autoloading. Add some unit tests for include/feedutils.php, but the interesting parts are unfortunately not testable with the current code.
Diffstat (limited to 'library/simplepie/db.sql')
-rw-r--r--library/simplepie/db.sql38
1 files changed, 0 insertions, 38 deletions
diff --git a/library/simplepie/db.sql b/library/simplepie/db.sql
deleted file mode 100644
index 13f504c21..000000000
--- a/library/simplepie/db.sql
+++ /dev/null
@@ -1,38 +0,0 @@
-/* SQLite */
-CREATE TABLE cache_data (
- id TEXT NOT NULL,
- items SMALLINT NOT NULL DEFAULT 0,
- data BLOB NOT NULL,
- mtime INTEGER UNSIGNED NOT NULL
-);
-CREATE UNIQUE INDEX id ON cache_data(id);
-
-CREATE TABLE items (
- feed_id TEXT NOT NULL,
- id TEXT NOT NULL,
- data TEXT NOT NULL,
- posted INTEGER UNSIGNED NOT NULL
-);
-CREATE INDEX feed_id ON items(feed_id);
-
-
-/* MySQL */
-CREATE TABLE `cache_data` (
- `id` TEXT CHARACTER SET utf8 NOT NULL,
- `items` SMALLINT NOT NULL DEFAULT 0,
- `data` BLOB NOT NULL,
- `mtime` INT UNSIGNED NOT NULL,
- UNIQUE (
- `id`(125)
- )
-);
-
-CREATE TABLE `items` (
- `feed_id` TEXT CHARACTER SET utf8 NOT NULL,
- `id` TEXT CHARACTER SET utf8 NOT NULL,
- `data` TEXT CHARACTER SET utf8 NOT NULL,
- `posted` INT UNSIGNED NOT NULL,
- INDEX `feed_id` (
- `feed_id`(125)
- )
-); \ No newline at end of file