1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2018 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Fisharebest\Webtrees\Schema;
use Fisharebest\Webtrees\Database;
use PDOException;
/**
* Upgrade the database schema from version 37 to version 38.
*/
class Migration37 implements MigrationInterface
{
/**
* Upgrade to to the next version
*/
public function upgrade()
{
Database::prepare(
"DROP TABLE IF EXISTS `##site_access_rule`"
)->execute();
try {
Database::prepare(
"INSERT INTO `##site_setting` (setting_name, setting_value)" .
" SELECT 'next_xref', MAX(next_id) FROM `##next_id`"
)->execute();
} catch (PDOException $ex) {
// Already done?
}
Database::prepare(
"DELETE FROM `##gedcom_setting` WHERE setting_name in ('FAM_ID_PREFIX', 'GEDCOM_ID_PREFIX', 'MEDIA_ID_PREFIX', 'NOTE_ID_PREFIX', 'REPO_ID_PREFIX', 'SOURCE_ID_PREFIX')"
)->execute();
Database::prepare(
"DROP TABLE IF EXISTS `##next_id`"
)->execute();
Database::prepare(
"CREATE TABLE IF NOT EXISTS `##media_file` (" .
"id INTEGER AUTO_INCREMENT NOT NULL PRIMARY KEY," .
"m_id VARCHAR(20) NOT NULL," .
"m_file INTEGER NOT NULL," .
"multimedia_file_refn VARCHAR(512) NOT NULL," . // GEDCOM only allows 30 characters
"multimedia_format VARCHAR(4) NOT NULL," .
"source_media_type VARCHAR(15) NOT NULL," .
"descriptive_title VARCHAR(248) NOT NULL," .
"KEY `##media_file_ix1` (m_id, m_file)," .
"KEY `##media_file_ix2` (m_file, m_id)," .
"KEY `##media_file_ix3` (m_file, multimedia_file_refn)," .
"KEY `##media_file_ix4` (m_file, multimedia_format)," .
"KEY `##media_file_ix5` (m_file, source_media_type)," .
"KEY `##media_file_ix6` (m_file, descriptive_title)" .
") ENGINE=InnoDB COLLATE=utf8_unicode_ci"
)->execute();
Database::prepare(
"INSERT INTO `##media_file` (" .
"m_id, m_file, multimedia_file_refn, multimedia_format, source_media_type, descriptive_title" .
") SELECT m_id, m_file, m_filename, m_ext, LEFT(m_type, 15), m_titl FROM `##media`"
)->execute();
try {
Database::prepare(
"ALTER TABLE `##media`" .
" DROP COLUMN m_filename," .
" DROP COLUMN m_ext," .
" DROP COLUMN m_type," .
" DROP COLUMN m_titl"
)->execute();
} catch (PDOException $ex) {
// Already done?
}
}
}
|