-
Notifications
You must be signed in to change notification settings - Fork 0
bchavet/sheepserver
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
-- MySQL dump 10.13 Distrib 5.1.66, for pc-linux-gnu (x86_64) -- -- Host: localhost Database: sheep -- ------------------------------------------------------ -- Server version 5.1.66 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `config` -- DROP TABLE IF EXISTS `config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `config` ( `name` varchar(255) DEFAULT NULL, `value` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `frame` -- DROP TABLE IF EXISTS `frame`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `frame` ( `frame_id` int(11) NOT NULL, `sheep_id` int(11) DEFAULT NULL, `flock_id` int(11) DEFAULT NULL, `ip` varchar(15) DEFAULT NULL, `start_time` int(11) DEFAULT NULL, `end_time` int(11) DEFAULT NULL, `state` varchar(25) DEFAULT NULL, `nick` varchar(25) DEFAULT NULL, `uid` varchar(25) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sheep` -- DROP TABLE IF EXISTS `sheep`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sheep` ( `sheep_id` int(11) NOT NULL, `flock_id` int(11) DEFAULT NULL, `first` int(11) DEFAULT NULL, `last` int(11) DEFAULT NULL, `state` varchar(25) DEFAULT NULL, `nframes` int(11) DEFAULT NULL, `credit` varchar(255) DEFAULT NULL, `parent0` int(11) DEFAULT NULL, `parent1` int(11) DEFAULT NULL, `rating` int(11) DEFAULT NULL, `rating_min` int(11) DEFAULT NULL, `rating_max` int(11) DEFAULT NULL, `num_votes` int(11) DEFAULT NULL, `start_time` int(11) DEFAULT NULL, `end_time` int(11) DEFAULT NULL, `credit_link` varchar(255) DEFAULT NULL, `size` int(11) DEFAULT NULL, `modified_time` int(11) DEFAULT NULL, `spex` longtext ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `votes` -- DROP TABLE IF EXISTS `votes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `votes` ( `vote_id` int(11) NOT NULL AUTO_INCREMENT, `ip_address` varchar(15) DEFAULT NULL, `vote_time` int(11) DEFAULT NULL, PRIMARY KEY (`vote_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2013-01-18 13:32:29
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published