/usr/share/perl5/EB/migrate/001000013001000014.sql is in eekboek 2.00.03-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | BEGIN WORK;
-- ONLY: SQLite
SELECT * INTO TEMP TAccounts FROM Accounts WHERE acc_id = 0;
ALTER TABLE Accounts
ADD COLUMN acc_dcfixed boolean; -- fixed d/c
-- ONLY: SQLite
ALTER TABLE TAccounts
ADD COLUMN acc_dcfixed boolean; -- fixed d/c
UPDATE Accounts SET acc_dcfixed = 'f' WHERE acc_balres;
-- Bump version.
UPDATE Constants
SET value = '14'
WHERE name = 'SCM_REVISION' AND value = '13';
UPDATE Metadata
SET adm_scm_revision =
(SELECT int2(value) FROM Constants WHERE name = 'SCM_REVISION');
COMMIT WORK;
|