View of /trunk/upgrade/sql/ProfileComments/1.php
Parent Directory
|
Revision Log
Revision 14 -
(download)
(annotate)
Thu Jan 22 21:54:43 2009 UTC (4 years, 4 months ago) by pith7
File size: 1699 byte(s)
Thu Jan 22 21:54:43 2009 UTC (4 years, 4 months ago) by pith7
File size: 1699 byte(s)
[Added] Users can now have avatars. (Profile page) [Added] Profile page for users [Added] Comments system for profiles [Added] Avatar support for news [Added] Function to output name with link to profile [Fixed] Minor news page CSS tweaks [Fixed] Indented CSS
<?php /** * Users table revision 1 (Initial structure) * * Copyright (c) 2009 FlexCP Contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * @author PiTh7 <friedfrogs888@yahoo.com> * @package FlexCP * @subpackage Upgrader * @filesource * @version $Id$ */ DB::Execute( "CREATE TABLE IF NOT EXISTS {P}ProfileComments ( comID int(11) NOT NULL, comTime int(11) NOT NULL, comTitle varchar(100) NOT NULL, comBody varchar(500) NOT NULL, commenterID int(11) NOT NULL, commenteeID int(11) NOT NULL, PRIMARY KEY (comID) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); DB::SetTableRevision('ProfileComments',1);
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

