Koha/installer
Tomas Cohen Arazi 5be6c78e6e
Bug 23168: Enable plugins using plain SQL
To test:
- On a clean 18.11.x, install a plugin [1]
- Run:
  $ sudo koha-mysql kohadev
  > SELECT * FROM plugin_data;
=> SUCCESS: Notice there's a __INSTALLED_VERSION__ line for your plugin
- Checkout latest master, restart all the things
- Run:
  $ updatedatabase
=> FAIL: It fails on 18.12.00.069 because the plugin_methods table doesn't exist
- Run:
  $ sudo koha-mysql kohadev
  > SELECT * FROM plugin_data;
=> FAIL: No __ENABLED__ line for your plugin
- Apply the patch
- Run:
  $ updatedatabase
=> SUCCESS: Update passes the 18.12.00.069 step correctly
- Run:
  $ sudo koha-mysql kohadev
  > SELECT * FROM plugin_data;
=> SUCCESS: There's an __ENABLED__ line for your plugin
- Sign off :-D

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2019-06-20 16:40:50 +01:00
..
data/mysql Bug 23168: Enable plugins using plain SQL 2019-06-20 16:40:50 +01:00
externalmodules.pl Bug 20000: Use Modern::Perl in installer scripts 2019-02-04 16:57:14 +00:00
html-template-to-template-toolkit.pl Bug 20000: Use Modern::Perl in installer scripts 2019-02-04 16:57:14 +00:00
install.pl Bug 20000: Use Modern::Perl in installer scripts 2019-02-04 16:57:14 +00:00
onboarding.pl Bug 22489: Update onboarding tool for bug 18925 2019-03-15 11:33:09 +00:00