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
89
90
91
92
93
94
95
|
-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
-- Source: sql/abstractSchemaChanges/patch-filearchive-fa_size_to_bigint.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
CREATE TEMPORARY TABLE /*_*/__temp__filearchive AS
SELECT
fa_id,
fa_name,
fa_archive_name,
fa_storage_group,
fa_storage_key,
fa_deleted_user,
fa_deleted_timestamp,
fa_deleted_reason_id,
fa_size,
fa_width,
fa_height,
fa_metadata,
fa_bits,
fa_media_type,
fa_major_mime,
fa_minor_mime,
fa_description_id,
fa_actor,
fa_timestamp,
fa_deleted,
fa_sha1
FROM /*_*/filearchive;
DROP TABLE /*_*/filearchive;
CREATE TABLE /*_*/filearchive (
fa_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
fa_name BLOB DEFAULT '' NOT NULL, fa_archive_name BLOB DEFAULT '',
fa_storage_group BLOB DEFAULT NULL,
fa_storage_key BLOB DEFAULT '', fa_deleted_user INTEGER DEFAULT NULL,
fa_deleted_timestamp BLOB DEFAULT NULL,
fa_deleted_reason_id BIGINT UNSIGNED NOT NULL,
fa_size BIGINT UNSIGNED DEFAULT 0,
fa_width INTEGER DEFAULT 0, fa_height INTEGER DEFAULT 0,
fa_metadata BLOB DEFAULT NULL, fa_bits INTEGER DEFAULT 0,
fa_media_type TEXT DEFAULT NULL, fa_major_mime TEXT DEFAULT 'unknown',
fa_minor_mime BLOB DEFAULT 'unknown',
fa_description_id BIGINT UNSIGNED NOT NULL,
fa_actor BIGINT UNSIGNED NOT NULL,
fa_timestamp BLOB DEFAULT NULL, fa_deleted SMALLINT UNSIGNED DEFAULT 0 NOT NULL,
fa_sha1 BLOB DEFAULT '' NOT NULL
);
INSERT INTO /*_*/filearchive (
fa_id, fa_name, fa_archive_name, fa_storage_group,
fa_storage_key, fa_deleted_user,
fa_deleted_timestamp, fa_deleted_reason_id,
fa_size, fa_width, fa_height, fa_metadata,
fa_bits, fa_media_type, fa_major_mime,
fa_minor_mime, fa_description_id,
fa_actor, fa_timestamp, fa_deleted,
fa_sha1
)
SELECT
fa_id,
fa_name,
fa_archive_name,
fa_storage_group,
fa_storage_key,
fa_deleted_user,
fa_deleted_timestamp,
fa_deleted_reason_id,
fa_size,
fa_width,
fa_height,
fa_metadata,
fa_bits,
fa_media_type,
fa_major_mime,
fa_minor_mime,
fa_description_id,
fa_actor,
fa_timestamp,
fa_deleted,
fa_sha1
FROM
/*_*/__temp__filearchive;
DROP TABLE /*_*/__temp__filearchive;
CREATE INDEX fa_name ON /*_*/filearchive (fa_name, fa_timestamp);
CREATE INDEX fa_storage_group ON /*_*/filearchive (
fa_storage_group, fa_storage_key
);
CREATE INDEX fa_deleted_timestamp ON /*_*/filearchive (fa_deleted_timestamp);
CREATE INDEX fa_actor_timestamp ON /*_*/filearchive (fa_actor, fa_timestamp);
CREATE INDEX fa_sha1 ON /*_*/filearchive (fa_sha1);
|