diff options
| author | 2015-05-12 18:31:03 +0200 | |
|---|---|---|
| committer | 2015-05-12 18:31:03 +0200 | |
| commit | 0f408e83e0173977cb4659d126b31a3671fa8114 (patch) | |
| tree | 04530333e0a303420924ce0f835db365fa9e7f45 /app/SQL/install.sql.sqlite.php | |
| parent | d6c22a0841779c387949f52a6e87c2f9e1f89955 (diff) | |
| parent | 217c191a1ba3ac03b847d261a32e19975380fcad (diff) | |
Merge pull request #828 from Alkarex/sqliteBug
SQLite compatibility with new update mode
Diffstat (limited to 'app/SQL/install.sql.sqlite.php')
| -rw-r--r-- | app/SQL/install.sql.sqlite.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/SQL/install.sql.sqlite.php b/app/SQL/install.sql.sqlite.php index 7517ead45..77e8e094c 100644 --- a/app/SQL/install.sql.sqlite.php +++ b/app/SQL/install.sql.sqlite.php @@ -39,7 +39,7 @@ $SQL_CREATE_TABLES = array( `content` text, `link` varchar(1023) NOT NULL, `date` int(11), -- Until year 2038 - `lastSeen` INT(11) NOT NULL, -- v1.2, Until year 2038 + `lastSeen` INT(11) DEFAULT 0, -- v1.2, Until year 2038 `hash` BINARY(16), -- v1.2 `is_read` boolean NOT NULL DEFAULT 0, `is_favorite` boolean NOT NULL DEFAULT 0, |
