J. King
e4a7e6622b
Fix most problems with the new schema
...
Some issues remain with MySQL
2022-06-06 19:54:48 -04:00
J. King
bd728e3e12
New schema for MySQL
2022-05-30 16:57:13 -04:00
J. King
55012255bb
New schema for PostgreSQL
...
This also address various omissions in the SQLite schema
2022-05-30 15:10:09 -04:00
J. King
a2115a50fa
Complete new database schema for SQLite
2022-05-26 17:33:16 -04:00
J. King
5a78fc0492
New schema fixup
2022-05-03 15:51:33 -04:00
J. King
94b816ff53
Fill out the new schema a bit more
2022-05-02 23:35:25 -04:00
J. King
3e2fce3129
Law out the plan for the new schema
2022-05-02 17:23:08 -04:00
J. King
e65069885b
Clean up obsolete FIXMEs
2022-04-25 18:30:13 -04:00
J. King
86897af0b3
Add ability to enable scraper
...
Also transfer any existing scraper booleans on database upgrade. It was
previously possible to enable scraping manually by editing the database,
and these settings will be honoured.
2021-01-16 19:06:20 -05:00
J. King
4cb23dd198
Partial implementation of proper content scraping
2021-01-16 14:24:01 -05:00
J. King
d5cd5b6a17
Implement hidden marks
...
Tests are still needed
2020-12-15 13:20:03 -05:00
J. King
c43d0dcae3
Groundwork for filtering rules
2020-12-14 20:09:38 -05:00
J. King
5c83655541
Add modification timestamp to user metadata
2020-12-08 16:10:23 -05:00
J. King
a431243421
Fixes for MySQL and PostgreSQL
2020-12-06 13:17:19 -05:00
J. King
fcf1260dab
Adjust database portion of user property manager
2020-12-05 22:13:48 -05:00
J. King
978929aabd
WIP redesign of user properties
2020-12-05 11:01:44 -05:00
J. King
e861cca53d
Integrate schema change necessary for microsub
2020-11-06 11:06:27 -05:00
J. King
8f739cec85
Excluse empty-string URLs from icons table
2020-11-06 10:28:28 -05:00
J. King
af675479b8
Remove excess whitespace
2020-11-04 18:35:36 -05:00
J. King
2438f35f3d
Add icon cache to database
...
Feed updating has not yet been adapted to store
icon data (nor their URLs anymore)
2020-11-04 18:34:22 -05:00
J. King
905f8938e2
Typo
2020-11-01 09:37:59 -05:00
J. King
16d2e01668
New schema for PostgreSQL and MySQL
2020-10-30 19:00:11 -04:00
J. King
4db1b95cf4
Add numeric IDs and other Miniflux data to SQLite schema
2020-10-30 15:25:22 -04:00
J. King
b58a326461
Prepare for schema changes
2020-10-29 11:58:45 -04:00
J. King
c9d4540616
Merge branch 'mysql'
2019-12-06 17:44:29 -05:00
J. King
bbe70b6abc
Corect CamelCase references to Nextcloud
2019-12-05 13:02:02 -05:00
J. King
794fb506a5
Widen URL field
2019-12-03 22:33:44 -05:00
J. King
484510cf8c
Expand text fields other than user id and feed URL
2019-12-03 17:10:47 -05:00
J. King
f4b08170bf
Fix MySQL schema
2019-12-02 16:38:41 -05:00
J. King
568e6e4660
Delete dangling MySQL records when updating
...
MySQL seems to reject queries involving arsse_folders.parent and
arsse_subscription.folder, though they appear to be valid. More testing
is required.
2019-12-01 22:29:48 -05:00
J. King
737dd9f6b8
Fix foreign keys in MySQL
2019-12-01 15:00:28 -05:00
J. King
38bdde1167
Add access tokens to the db, with relevant code
...
Tokens are similar to sessions in that they stand in for users, but the
protocol handlers will manage them; Fever login hashes are the
originating use case for them. These must never expire, for example,
and we need to specify their values.
This commit also performs a bit of database clean-up
2019-03-09 16:23:56 -05:00
J. King
ed22090e49
Work around various SQLite-related problems
...
- WAL mode was not getting set properly
- Queries using the PDO driver could fail because PDO sucks
2019-03-04 11:05:46 -05:00
J. King
fb1bdbfb37
Database schema for subscription tags
2019-03-03 12:10:18 -05:00
J. King
05aadfe7c7
Use correct SQLite chema change procedure; version bump
2019-01-21 10:40:39 -05:00
J. King
393b4e95ad
Adjustments for MySQL 8
...
The prototype had been tested against MariaDB
2018-12-20 20:50:56 -05:00
J. King
316ba941a2
Hopefully complete MySQL schema
2018-12-15 11:09:46 -05:00
J. King
86c16d3cb3
Merge branch 'master' into mysql
2018-12-15 09:22:47 -05:00
J. King
50f92625ef
Use PosgreSQL's existing general Unicode collation
...
All collations appear to be case-insensitive
2018-12-14 09:18:56 -05:00
J. King
0f48ce6f37
Use a Unicode collation for SQLite
2018-12-11 14:14:32 -05:00
J. King
8fc31cfc40
Rewrite various queries to work in PostgreSQL
...
This involved changes to the driver interface as well as the database
schemata. The most significantly altered queries were for article
selection and marking, which relied upon unusual features of SQLite.
Overall query efficiency should not be adversely affected (it may have
even imprved) in the common case, while very rare cases (not presently
triggered by any REST handlers) require more queries.
One notable benefit of these changes is that functions which query
articles can now have complete control over which columns are returned.
This has not, however, been implemented yet: symbolic column groups are
still used for now.
Note that PostgreSQL still fails many tests, but the test suite runs to
completion. Note also that one line of the Database class is not
covered; later changes will eventually make it easier to cover the line
in question.
2018-12-04 20:41:21 -05:00
J. King
0f7baf4b51
Base MySQL schema
...
Note the columns "key" and "read" must be quoted in addition to "user".
2018-11-28 14:00:36 -05:00
J. King
10b228224d
Correct PostgreSQL data format and other tweaks
2018-11-28 12:12:49 -05:00
J. King
d0db784b22
PostgreSQL schema tweak
2018-11-27 17:50:38 -05:00
J. King
dccd4caede
Convert one database function test series (articles) to a common harness
...
Also revert the dropping of tables in the schema files. This was for the
convenience of tests, but the risk of data loss is too great
2018-11-24 23:18:17 -05:00
J. King
36c5984c47
Add drop statements to database schemata to simplify testing
2018-11-23 12:53:56 -05:00
J. King
c0c4810662
Nominally complete PostgreSQL driver
...
Connection error handling as well as uprade error handling still need
to be implemented.
2018-11-21 11:06:12 -05:00
J. King
f64f0c6a22
Whitespace cleanup
2018-10-26 14:58:04 -04:00
J. King
4b46d654bb
Replace SQLite is
with SQL = for consistency
2017-12-19 17:19:05 -05:00
J. King
0b3b3cb49c
Use SQLite nocase collation; improves #127
2017-12-07 18:05:34 -05:00