xref: /webtrees/app/Schema/Migration1.php (revision 3bfb94b0b402ff08e5888afb946384316f6d3e60)
1*3bfb94b0SGreg Roach<?php
2*3bfb94b0SGreg Roachnamespace Fisharebest\Webtrees\Schema;
3*3bfb94b0SGreg Roach
4*3bfb94b0SGreg Roach/**
5*3bfb94b0SGreg Roach * webtrees: online genealogy
6*3bfb94b0SGreg Roach * Copyright (C) 2015 webtrees development team
7*3bfb94b0SGreg Roach * This program is free software: you can redistribute it and/or modify
8*3bfb94b0SGreg Roach * it under the terms of the GNU General Public License as published by
9*3bfb94b0SGreg Roach * the Free Software Foundation, either version 3 of the License, or
10*3bfb94b0SGreg Roach * (at your option) any later version.
11*3bfb94b0SGreg Roach * This program is distributed in the hope that it will be useful,
12*3bfb94b0SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
13*3bfb94b0SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14*3bfb94b0SGreg Roach * GNU General Public License for more details.
15*3bfb94b0SGreg Roach * You should have received a copy of the GNU General Public License
16*3bfb94b0SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
17*3bfb94b0SGreg Roach */
18*3bfb94b0SGreg Roachuse Fisharebest\Webtrees\Database;
19*3bfb94b0SGreg Roach
20*3bfb94b0SGreg Roach/**
21*3bfb94b0SGreg Roach * Class Migration1 - upgrade the database schema from version 1 to version 2.
22*3bfb94b0SGreg Roach */
23*3bfb94b0SGreg Roachclass Migration1 implements MigrationInterface {
24*3bfb94b0SGreg Roach	/** {@inheritDoc} */
25*3bfb94b0SGreg Roach	public function upgrade() {
26*3bfb94b0SGreg Roach		// Create the wt_session table to store session data in the database,
27*3bfb94b0SGreg Roach		// rather than in the filesystem.
28*3bfb94b0SGreg Roach		Database::exec(
29*3bfb94b0SGreg Roach			"CREATE TABLE IF NOT EXISTS `##session` (" .
30*3bfb94b0SGreg Roach			" session_id   CHAR(32)    NOT NULL," .
31*3bfb94b0SGreg Roach			" session_time TIMESTAMP   NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP," .
32*3bfb94b0SGreg Roach			" user_id      INTEGER     NOT NULL," .
33*3bfb94b0SGreg Roach			" ip_address   VARCHAR(32) NOT NULL," .
34*3bfb94b0SGreg Roach			" session_data MEDIUMBLOB  NOT NULL," .
35*3bfb94b0SGreg Roach			" PRIMARY KEY     (session_id)," .
36*3bfb94b0SGreg Roach			"         KEY ix1 (session_time)," .
37*3bfb94b0SGreg Roach			"         KEY ix2 (user_id, ip_address)" .
38*3bfb94b0SGreg Roach			") COLLATE utf8_unicode_ci ENGINE=InnoDB"
39*3bfb94b0SGreg Roach		);
40*3bfb94b0SGreg Roach	}
41*3bfb94b0SGreg Roach}
42