Created
November 27, 2013 17:00
-
-
Save MissAllSunday/7679222 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
array (size=12) | |
'enable_wall' => string '1' (length=1) | |
'pagination_number' => string '5' (length=1) | |
'load_more' => string '0' (length=1) | |
'how_many_mentions' => string '5' (length=1) | |
'kick_ignored' => string '0' (length=1) | |
'enable_activityLog' => string '0' (length=1) | |
'enable_buddies' => string '0' (length=1) | |
'enable_visitors' => string '0' (length=1) | |
'visitors_timeframe' => string 'Hour' (length=4) | |
'clear_noti' => string '0' (length=1) | |
'noti_on_comment' => string '0' (length=1) | |
'noti_on_mention' => string '0' (length=1) | |
// Member options | |
$tables[] = array( | |
'table_name' => '{db_prefix}breeze_options', | |
'columns' => array( | |
array( | |
'name' => 'member_id', | |
'type' => 'int', | |
'size' => 5, | |
'null' => false | |
), | |
array( | |
'name' => 'variable', | |
'type' => 'varchar', | |
'size' => 255, | |
'default' => '', | |
), | |
array( | |
'name' => 'value', | |
'type' => 'varchar', | |
'size' => 255, | |
'default' => '', | |
), | |
), | |
'indexes' => array( | |
array( | |
'type' => 'key', | |
'columns' => array('member_id') | |
), | |
), | |
'if_exists' => 'ignore', | |
'error' => 'fatal', | |
'parameters' => array(), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment