Fixed installation error

(closes #188)
This commit is contained in:
Sergio Brighenti 2020-04-11 17:59:14 +02:00
parent ccc10f6499
commit 4cefa9ed24
4 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,6 @@
## v.3.1.1
+ Fixed error during a fresh installation with sqlite
## v.3.1
+ Added tagging system (add, delete, search of tagged files).
+ Added basic media auto-tagging on upload.

View file

@ -31,8 +31,6 @@ class Migrator
public function migrate()
{
$this->db->query('SELECT 1 FROM `migrations` LIMIT 1');
$this->db->getPdo()->exec(file_get_contents($this->schemaPath.DIRECTORY_SEPARATOR.'migrations.sql'));
$files = glob($this->schemaPath.'/'.$this->db->getCurrentDriver().'/*.sql');

View file

@ -1,6 +1,6 @@
{
"name": "sergix44/xbackbone",
"version": "3.1",
"version": "3.1.1",
"description": "A lightweight ShareX PHP backend",
"type": "project",
"require": {

View file

@ -3,6 +3,8 @@ layout: default
title: Changelog
nav_order: 8
---
## v.3.1.1
+ Fixed error during a fresh installation with sqlite
## v.3.1
+ Added tagging system (add, delete, search of tagged files).