mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-06 07:33:29 -04:00
CLI to export/import any database to/from SQLite
Require PHP 5.5+ https://github.com/FreshRSS/FreshRSS/pull/2495
This commit is contained in:
@@ -91,7 +91,7 @@ $SQL_CREATE_TABLE_TAGS = array(
|
||||
);',
|
||||
'CREATE TABLE IF NOT EXISTS `entrytag` (
|
||||
`id_tag` SMALLINT,
|
||||
`id_entry` SMALLINT,
|
||||
`id_entry` BIGINT,
|
||||
PRIMARY KEY (`id_tag`,`id_entry`),
|
||||
FOREIGN KEY (`id_tag`) REFERENCES `tag` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
FOREIGN KEY (`id_entry`) REFERENCES `entry` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
||||
|
||||
Reference in New Issue
Block a user