-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.dump
41 lines (36 loc) · 1.48 KB
/
db.dump
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
-- MySQL dump 10.13 Distrib 8.0.16, for osx10.12 (x86_64)
--
-- Host: 127.0.0.1 Database: app
-- ------------------------------------------------------
-- Server version 5.5.5-10.3.25-MariaDB-0+deb10u1
/*!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 */;
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 `feo_content`
--
DROP TABLE IF EXISTS `feo_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `feo_content` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`page_id` bigint(20) NOT NULL,
`text` longtext DEFAULT NULL,
`status` enum('publish','delete') NOT NULL DEFAULT 'publish',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `feo_content`
--
LOCK TABLES `feo_content` WRITE;
/*!40000 ALTER TABLE `feo_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `feo_content` ENABLE KEYS */;
UNLOCK TABLES;