-- phpMyAdmin SQL Dump -- version 2.11.11.3 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Mar 13, 2012 at 06:17 PM -- Server version: 5.1.61 -- PHP Version: 5.3.3 CREATE DATABASE IF NOT EXISTS `vscms` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `vscms`; SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `vscms` -- -- -------------------------------------------------------- -- -- Table structure for table `pages` -- CREATE TABLE IF NOT EXISTS `pages` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `locationid` int(10) unsigned NOT NULL, `locationuuid` varchar(255) DEFAULT NULL, `websiteurl` varchar(255) DEFAULT NULL, `pageid` varchar(255) DEFAULT NULL, `variablename` varchar(255) DEFAULT NULL, `contenttype` int(10) unsigned NOT NULL, `content` mediumtext, `createdDate` datetime NOT NULL, `modifiedDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE IF NOT EXISTS `site` ( `id` int(11) NOT NULL AUTO_INCREMENT, `websiteurl` varchar(255) DEFAULT NULL, `locationuuid` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Table structure for table `user` -- CREATE TABLE IF NOT EXISTS `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `locationid` int(11) DEFAULT 0, `locationuuid` varchar(255) DEFAULT NULL, `websiteurl` varchar(255) DEFAULT NULL, `username` varchar(255) DEFAULT NULL, `firstname` varchar(255) DEFAULT NULL, `lastname` varchar(255) DEFAULT NULL, `pswrd` varchar(50) DEFAULT NULL, `level` INT(11) DEFAULT 0, `active` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;