uom / tk-database
The Tropotek Framework database libs
3.4.4
2022-08-03 00:00 UTC
Requires
- ext-pdo: *
- uom/tk-framework: ~3.2.0
- 3.4.x-dev
- 3.4.4
- 3.4.2
- 3.4.0
- 3.2.x-dev
- dev-master / 3.2.x-dev
- 3.2.50
- 3.2.48
- 3.2.46
- 3.2.44
- 3.2.42
- 3.2.40
- 3.2.38
- 3.2.36
- 3.2.34
- 3.2.32
- 3.2.30
- 3.2.28
- 3.2.26
- 3.2.24
- 3.2.22
- 3.2.20
- 3.2.18
- 3.2.16
- 3.2.14
- 3.2.12
- 3.2.10
- 3.2.8
- 3.2.6
- 3.2.4
- 3.2.2
- 3.2.0
- 3.0.x-dev
- 3.0.40
- 3.0.38
- 3.0.36
- 3.0.34
- 3.0.32
- 3.0.30
- 3.0.26
- 3.0.24
- 3.0.22
- 3.0.20
- 3.0.18
- 3.0.16
- 3.0.14
- 3.0.12
- 3.0.10
- 3.0.8
- 3.0.6
- 3.0.4
- 3.0.2
- 3.0.0
- 2.0.104
- 2.0.102
- 2.0.100
- 2.0.98
- 2.0.96
- 2.0.94
- 2.0.92
- 2.0.90
- 2.0.88
- 2.0.86
- 2.0.84
- 2.0.82
- 2.0.80
- 2.0.78
- 2.0.76
- 2.0.74
- 2.0.72
- 2.0.70
- 2.0.68
- 2.0.66
- 2.0.64
- 2.0.62
- 2.0.60
- 2.0.58
- 2.0.56
- 2.0.54
- 2.0.52
- 2.0.50
- 2.0.48
- 2.0.46
- 2.0.44
- 2.0.42
- 2.0.40
- 2.0.38
- 2.0.36
- 2.0.34
- 2.0.32
- 2.0.30
- 2.0.28
- 2.0.27
- 2.0.26
- 2.0.25
- 2.0.24
- 2.0.23
- 2.0.22
- 2.0.21
- 2.0.20
- 2.0.19
- 2.0.18
- 2.0.17
- 2.0.16
- 2.0.15
- 2.0.14
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- dev-ver2
- dev-ver1
This package is auto-updated.
Last update: 2024-10-30 01:54:00 UTC
README
Project: tk-database
Web: http://www.database.com/
Authors: Michael Mifsud http://www.tropotek.com/
A database lib for the Tropotek tk library.
Contents
Installation
Available on Packagist (uom/tk-database) and installable via Composer.
composer require uom/tk-database
Or add the following to your composer.json file:
"uom/tk-database": "~3.2.0"
Introduction
Upgrade
If you have DB migration issues you may manually update some system tables. See if you have any table without the underscore and rename them to the following.
-- NOTE: This has to be run manually before upgrading to ver 3.2
RENAME TABLE _migration TO _migration;
RENAME TABLE _data TO _data;
RENAME TABLE session TO _session;
RENAME TABLE _plugin TO _plugin;
Also check your src/config/application.php file and ensure that there are no manual overrides for this table as you may get unexpected results