diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-15 21:02:28 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-15 22:02:16 -0600 |
commit | 47bed3321634d888a51a611e6586c012a27eb1eb (patch) | |
tree | c8a4273c664f3eee4e4d90371f2e70913a79f4b2 /phpBB/install/database_update.php | |
parent | 1cfcbfd19f2bdb8d3248e8dc0bc88f09cbeb82d3 (diff) | |
download | forums-47bed3321634d888a51a611e6586c012a27eb1eb.tar forums-47bed3321634d888a51a611e6586c012a27eb1eb.tar.gz forums-47bed3321634d888a51a611e6586c012a27eb1eb.tar.bz2 forums-47bed3321634d888a51a611e6586c012a27eb1eb.tar.xz forums-47bed3321634d888a51a611e6586c012a27eb1eb.zip |
[ticket/11103] time -> notification_time
PHPBB3-11103
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r-- | phpBB/install/database_update.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index ae810e1022..614f41f139 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1192,15 +1192,15 @@ function database_update_info() ), NOTIFICATIONS_TABLE => array( 'COLUMNS' => array( - 'notification_id' => array('UINT', NULL, 'auto_increment'), - 'item_type' => array('VCHAR:255', ''), - 'item_id' => array('UINT', 0), - 'item_parent_id' => array('UINT', 0), - 'user_id' => array('UINT', 0), - 'unread' => array('BOOL', 1), - 'is_enabled' => array('BOOL', 1), - 'time' => array('TIMESTAMP', 1), - 'data' => array('TEXT_UNI', ''), + 'notification_id' => array('UINT', NULL, 'auto_increment'), + 'item_type' => array('VCHAR:255', ''), + 'item_id' => array('UINT', 0), + 'item_parent_id' => array('UINT', 0), + 'user_id' => array('UINT', 0), + 'unread' => array('BOOL', 1), + 'is_enabled' => array('BOOL', 1), + 'notification_time' => array('TIMESTAMP', 1), + 'data' => array('TEXT_UNI', ''), ), 'PRIMARY_KEY' => 'notification_id', 'KEYS' => array( |