mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
extend the style columns (style_id, template_id, imageset_id, image_id...)
No, not only because of possible style demos. :o git-svn-id: file:///svn/phpbb/trunk@9130 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
d57b4d0b48
commit
0d92e30b38
1 changed files with 11 additions and 11 deletions
|
@ -252,7 +252,7 @@ $schema_data['phpbb_forums'] = array(
|
||||||
'forum_desc_uid' => array('VCHAR:8', ''),
|
'forum_desc_uid' => array('VCHAR:8', ''),
|
||||||
'forum_link' => array('VCHAR_UNI', ''),
|
'forum_link' => array('VCHAR_UNI', ''),
|
||||||
'forum_password' => array('VCHAR_UNI:40', ''),
|
'forum_password' => array('VCHAR_UNI:40', ''),
|
||||||
'forum_style' => array('USINT', 0),
|
'forum_style' => array('UINT', 0),
|
||||||
'forum_image' => array('VCHAR', ''),
|
'forum_image' => array('VCHAR', ''),
|
||||||
'forum_rules' => array('TEXT_UNI', ''),
|
'forum_rules' => array('TEXT_UNI', ''),
|
||||||
'forum_rules_link' => array('VCHAR_UNI', ''),
|
'forum_rules_link' => array('VCHAR_UNI', ''),
|
||||||
|
@ -784,13 +784,13 @@ $schema_data['phpbb_smilies'] = array(
|
||||||
|
|
||||||
$schema_data['phpbb_styles'] = array(
|
$schema_data['phpbb_styles'] = array(
|
||||||
'COLUMNS' => array(
|
'COLUMNS' => array(
|
||||||
'style_id' => array('USINT', NULL, 'auto_increment'),
|
'style_id' => array('UINT', NULL, 'auto_increment'),
|
||||||
'style_name' => array('VCHAR_UNI:255', ''),
|
'style_name' => array('VCHAR_UNI:255', ''),
|
||||||
'style_copyright' => array('VCHAR_UNI', ''),
|
'style_copyright' => array('VCHAR_UNI', ''),
|
||||||
'style_active' => array('BOOL', 1),
|
'style_active' => array('BOOL', 1),
|
||||||
'template_id' => array('USINT', 0),
|
'template_id' => array('UINT', 0),
|
||||||
'theme_id' => array('USINT', 0),
|
'theme_id' => array('UINT', 0),
|
||||||
'imageset_id' => array('USINT', 0),
|
'imageset_id' => array('UINT', 0),
|
||||||
),
|
),
|
||||||
'PRIMARY_KEY' => 'style_id',
|
'PRIMARY_KEY' => 'style_id',
|
||||||
'KEYS' => array(
|
'KEYS' => array(
|
||||||
|
@ -803,7 +803,7 @@ $schema_data['phpbb_styles'] = array(
|
||||||
|
|
||||||
$schema_data['phpbb_styles_template'] = array(
|
$schema_data['phpbb_styles_template'] = array(
|
||||||
'COLUMNS' => array(
|
'COLUMNS' => array(
|
||||||
'template_id' => array('USINT', NULL, 'auto_increment'),
|
'template_id' => array('UINT', NULL, 'auto_increment'),
|
||||||
'template_name' => array('VCHAR_UNI:255', ''),
|
'template_name' => array('VCHAR_UNI:255', ''),
|
||||||
'template_copyright' => array('VCHAR_UNI', ''),
|
'template_copyright' => array('VCHAR_UNI', ''),
|
||||||
'template_path' => array('VCHAR:100', ''),
|
'template_path' => array('VCHAR:100', ''),
|
||||||
|
@ -817,7 +817,7 @@ $schema_data['phpbb_styles_template'] = array(
|
||||||
|
|
||||||
$schema_data['phpbb_styles_theme'] = array(
|
$schema_data['phpbb_styles_theme'] = array(
|
||||||
'COLUMNS' => array(
|
'COLUMNS' => array(
|
||||||
'theme_id' => array('USINT', NULL, 'auto_increment'),
|
'theme_id' => array('UINT', NULL, 'auto_increment'),
|
||||||
'theme_name' => array('VCHAR_UNI:255', ''),
|
'theme_name' => array('VCHAR_UNI:255', ''),
|
||||||
'theme_copyright' => array('VCHAR_UNI', ''),
|
'theme_copyright' => array('VCHAR_UNI', ''),
|
||||||
'theme_path' => array('VCHAR:100', ''),
|
'theme_path' => array('VCHAR:100', ''),
|
||||||
|
@ -833,7 +833,7 @@ $schema_data['phpbb_styles_theme'] = array(
|
||||||
|
|
||||||
$schema_data['phpbb_styles_imageset'] = array(
|
$schema_data['phpbb_styles_imageset'] = array(
|
||||||
'COLUMNS' => array(
|
'COLUMNS' => array(
|
||||||
'imageset_id' => array('USINT', NULL, 'auto_increment'),
|
'imageset_id' => array('UINT', NULL, 'auto_increment'),
|
||||||
'imageset_name' => array('VCHAR_UNI:255', ''),
|
'imageset_name' => array('VCHAR_UNI:255', ''),
|
||||||
'imageset_copyright' => array('VCHAR_UNI', ''),
|
'imageset_copyright' => array('VCHAR_UNI', ''),
|
||||||
'imageset_path' => array('VCHAR:100', ''),
|
'imageset_path' => array('VCHAR:100', ''),
|
||||||
|
@ -846,13 +846,13 @@ $schema_data['phpbb_styles_imageset'] = array(
|
||||||
|
|
||||||
$schema_data['phpbb_styles_imageset_data'] = array(
|
$schema_data['phpbb_styles_imageset_data'] = array(
|
||||||
'COLUMNS' => array(
|
'COLUMNS' => array(
|
||||||
'image_id' => array('USINT', NULL, 'auto_increment'),
|
'image_id' => array('UINT', NULL, 'auto_increment'),
|
||||||
'image_name' => array('VCHAR:200', ''),
|
'image_name' => array('VCHAR:200', ''),
|
||||||
'image_filename' => array('VCHAR:200', ''),
|
'image_filename' => array('VCHAR:200', ''),
|
||||||
'image_lang' => array('VCHAR:30', ''),
|
'image_lang' => array('VCHAR:30', ''),
|
||||||
'image_height' => array('USINT', 0),
|
'image_height' => array('USINT', 0),
|
||||||
'image_width' => array('USINT', 0),
|
'image_width' => array('USINT', 0),
|
||||||
'imageset_id' => array('USINT', 0),
|
'imageset_id' => array('UINT', 0),
|
||||||
),
|
),
|
||||||
'PRIMARY_KEY' => 'image_id',
|
'PRIMARY_KEY' => 'image_id',
|
||||||
'KEYS' => array(
|
'KEYS' => array(
|
||||||
|
@ -990,7 +990,7 @@ $schema_data['phpbb_users'] = array(
|
||||||
'user_timezone' => array('DECIMAL', 0),
|
'user_timezone' => array('DECIMAL', 0),
|
||||||
'user_dst' => array('BOOL', 0),
|
'user_dst' => array('BOOL', 0),
|
||||||
'user_dateformat' => array('VCHAR_UNI:30', 'd M Y H:i'),
|
'user_dateformat' => array('VCHAR_UNI:30', 'd M Y H:i'),
|
||||||
'user_style' => array('USINT', 0),
|
'user_style' => array('UINT', 0),
|
||||||
'user_rank' => array('UINT', 0),
|
'user_rank' => array('UINT', 0),
|
||||||
'user_colour' => array('VCHAR:6', ''),
|
'user_colour' => array('VCHAR:6', ''),
|
||||||
'user_new_privmsg' => array('INT:4', 0),
|
'user_new_privmsg' => array('INT:4', 0),
|
||||||
|
|
Loading…
Add table
Reference in a new issue