diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-08 16:02:32 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-08 16:02:32 -0500 |
commit | 1e53f7df9d430422e7bb827f3449ef744fc1ed6f (patch) | |
tree | 294a36b33776678c4aea59a01bdc258fb9567d67 /phpBB/develop | |
parent | a4eb8bf47a77cb2637bfad5db20ab9f0dc236059 (diff) | |
download | forums-1e53f7df9d430422e7bb827f3449ef744fc1ed6f.tar forums-1e53f7df9d430422e7bb827f3449ef744fc1ed6f.tar.gz forums-1e53f7df9d430422e7bb827f3449ef744fc1ed6f.tar.bz2 forums-1e53f7df9d430422e7bb827f3449ef744fc1ed6f.tar.xz forums-1e53f7df9d430422e7bb827f3449ef744fc1ed6f.zip |
[ticket/11103] Fixing some db columns that were of the incorrect type
PHPBB3-11103
Diffstat (limited to 'phpBB/develop')
-rw-r--r-- | phpBB/develop/create_schema_files.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index 88aa9b70dd..a2f7463dd4 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -1297,7 +1297,7 @@ function get_schema_struct() $schema_data['phpbb_notifications'] = array( 'COLUMNS' => array( - 'item_type' => array('UINT', 0), + 'item_type' => array('VCHAR:25', ''), 'item_id' => array('UINT', 0), 'user_id' => array('UINT', 0), 'unread' => array('BOOL', 1), @@ -1775,7 +1775,7 @@ function get_schema_struct() $schema_data['phpbb_user_notifications'] = array( 'COLUMNS' => array( - 'item_type' => array('UINT', 0), + 'item_type' => array('VCHAR:25', ''), 'item_id' => array('UINT', 0), 'user_id' => array('UINT', 0), 'method' => array('VCHAR:25', ''), |