PHP Classes

File: examples/schema.sql

Recommend this page to a friend!
  Classes of Barton Phillips   Simple Site Class   examples/schema.sql   Download  
File: examples/schema.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple Site Class
Simple Site Class
Author: By
Last change:
Date: 3 months ago
Size: 1,655 bytes
 

Contents

Class file image Download
DROP DATABASE IF EXISTS `barton`; CREATE DATABASE `barton`; USE barton; -- MySQL dump 10.13 Distrib 8.0.30, for Linux (x86_64) -- -- Host: localhost Database: barton -- ------------------------------------------------------ -- Server version 8.0.30-0ubuntu0.20.04.2 /*!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 */; /*!50503 SET NAMES utf8mb4 */; /*!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 `logagent` -- DROP TABLE IF EXISTS `logagent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `logagent` ( `site` varchar(25) NOT NULL DEFAULT '', `ip` varchar(40) NOT NULL DEFAULT '', `agent` text NOT NULL, `finger` varchar(20) DEFAULT NULL, `count` int DEFAULT NULL, `created` datetime DEFAULT NULL, `lasttime` datetime DEFAULT NULL, PRIMARY KEY (`site`,`ip`,`agent`(254)), KEY `ip` (`ip`), KEY `site` (`site`), KEY `created` (`created`), KEY `lasttime` (`lasttime`), KEY `agent` (`agent`(254)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 PACK_KEYS=1; /*!40101 SET character_set_client = @saved_cs_client */; -- Dump completed on 2022-08-14 2:00:01