aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/migration/3_0_5_rc1part2.php
blob: 710c8dce911545a41b3859bb38beccd4e31cd435 (plain)
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
<?php
/**
*
* @package migration
* @copyright (c) 2012 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
*
*/

class phpbb_db_migration_3_0_5_rc1part2 extends phpbb_db_migration
{
	function depends_on()
	{
		return array('phpbb_db_migration_3_0_5_rc1');
	}

	function update_schema()
	{
		return array(
			'drop_keys'			=> array(
				ACL_OPTIONS_TABLE		=> array('auth_option'),
			),
			'add_unique_index'	=> array(
				ACL_OPTIONS_TABLE		=> array(
					'auth_option'		=> array('auth_option'),
				),
			),
		);
	}

	function update_data()
	{
	}
}