good morning!!!!

Skip to content
Snippets Groups Projects
Commit c4f72441 authored by Carlos Nieto's avatar Carlos Nieto
Browse files

Removing _dumps directory as structures are now inside the respective wrapper's directory.

parent e6d7ae3e
No related branches found
No related tags found
No related merge requests found
-- MySQL dump 10.13 Distrib 5.5.27, for Linux (x86_64)
--
-- Host: localhost Database: gotest
-- ------------------------------------------------------
-- Server version 5.5.27-log
/*!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 `children`
--
DROP TABLE IF EXISTS `children`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `children` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` bigint(20) unsigned NOT NULL,
`name` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `children`
--
LOCK TABLES `children` WRITE;
/*!40000 ALTER TABLE `children` DISABLE KEYS */;
/*!40000 ALTER TABLE `children` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `data_types`
--
DROP TABLE IF EXISTS `data_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `data_types` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`_uint` int(10) unsigned DEFAULT NULL,
`_uintptr` int(10) unsigned DEFAULT NULL,
`_uint8` int(10) unsigned DEFAULT NULL,
`_uint16` int(10) unsigned DEFAULT NULL,
`_uint32` int(10) unsigned DEFAULT NULL,
`_uint64` bigint(20) unsigned DEFAULT NULL,
`_int` int(11) DEFAULT NULL,
`_int8` int(11) DEFAULT NULL,
`_int16` int(11) DEFAULT NULL,
`_int32` int(11) DEFAULT NULL,
`_int64` bigint(20) DEFAULT NULL,
`_float32` decimal(10,6) DEFAULT NULL,
`_float64` decimal(10,6) DEFAULT NULL,
`_byte` tinyint(4) DEFAULT NULL,
`_rune` tinyint(4) DEFAULT NULL,
`_bool` tinyint(4) DEFAULT NULL,
`_string` varchar(255) DEFAULT NULL,
`_date` datetime DEFAULT NULL,
`_bytea` varchar(255) DEFAULT NULL,
`_time` time DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `data_types`
--
LOCK TABLES `data_types` WRITE;
/*!40000 ALTER TABLE `data_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `data_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `people`
--
DROP TABLE IF EXISTS `people`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `people` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`place_code_id` bigint(20) unsigned NOT NULL,
`name` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `people`
--
LOCK TABLES `people` WRITE;
/*!40000 ALTER TABLE `people` DISABLE KEYS */;
/*!40000 ALTER TABLE `people` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `places`
--
DROP TABLE IF EXISTS `places`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `places` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`code_id` bigint(20) DEFAULT NULL,
`name` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `places`
--
LOCK TABLES `places` WRITE;
/*!40000 ALTER TABLE `places` DISABLE KEYS */;
/*!40000 ALTER TABLE `places` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `visits`
--
DROP TABLE IF EXISTS `visits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `visits` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`place_id` bigint(20) DEFAULT NULL,
`person_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `visits`
--
LOCK TABLES `visits` WRITE;
/*!40000 ALTER TABLE `visits` DISABLE KEYS */;
/*!40000 ALTER TABLE `visits` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 2012-09-19 20:01:32
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET escape_string_warning = off;
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: children; Type: TABLE; Schema: public; Owner: gouser; Tablespace:
--
CREATE TABLE children (
id integer NOT NULL,
parent_id integer,
name character varying(60)
);
ALTER TABLE public.children OWNER TO gouser;
--
-- Name: children_id_seq; Type: SEQUENCE; Schema: public; Owner: gouser
--
CREATE SEQUENCE children_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.children_id_seq OWNER TO gouser;
--
-- Name: children_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gouser
--
ALTER SEQUENCE children_id_seq OWNED BY children.id;
--
-- Name: data_types; Type: TABLE; Schema: public; Owner: gouser; Tablespace:
--
CREATE TABLE data_types (
id integer NOT NULL,
_uint integer,
_uint8 integer,
_uint16 integer,
_uint32 integer,
_uint64 integer,
_int integer,
_int8 integer,
_int16 integer,
_int32 integer,
_int64 integer,
_float32 numeric(10,6),
_float64 numeric(10,6),
_bool boolean,
_string text,
_date timestamp without time zone,
_time time without time zone
);
ALTER TABLE public.data_types OWNER TO gouser;
--
-- Name: data_types_id_seq; Type: SEQUENCE; Schema: public; Owner: gouser
--
CREATE SEQUENCE data_types_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_types_id_seq OWNER TO gouser;
--
-- Name: data_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gouser
--
ALTER SEQUENCE data_types_id_seq OWNED BY data_types.id;
--
-- Name: people; Type: TABLE; Schema: public; Owner: gouser; Tablespace:
--
CREATE TABLE people (
id integer NOT NULL,
place_code_id integer,
name character varying(60)
);
ALTER TABLE public.people OWNER TO gouser;
--
-- Name: people_id_seq; Type: SEQUENCE; Schema: public; Owner: gouser
--
CREATE SEQUENCE people_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.people_id_seq OWNER TO gouser;
--
-- Name: people_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gouser
--
ALTER SEQUENCE people_id_seq OWNED BY people.id;
--
-- Name: places; Type: TABLE; Schema: public; Owner: gouser; Tablespace:
--
CREATE TABLE places (
id integer NOT NULL,
code_id integer,
name character varying(60)
);
ALTER TABLE public.places OWNER TO gouser;
--
-- Name: places_id_seq; Type: SEQUENCE; Schema: public; Owner: gouser
--
CREATE SEQUENCE places_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.places_id_seq OWNER TO gouser;
--
-- Name: places_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gouser
--
ALTER SEQUENCE places_id_seq OWNED BY places.id;
--
-- Name: visits; Type: TABLE; Schema: public; Owner: gouser; Tablespace:
--
CREATE TABLE visits (
id integer NOT NULL,
place_id integer,
person_id integer
);
ALTER TABLE public.visits OWNER TO gouser;
--
-- Name: visits_id_seq; Type: SEQUENCE; Schema: public; Owner: gouser
--
CREATE SEQUENCE visits_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.visits_id_seq OWNER TO gouser;
--
-- Name: visits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gouser
--
ALTER SEQUENCE visits_id_seq OWNED BY visits.id;
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: gouser
--
ALTER TABLE ONLY children ALTER COLUMN id SET DEFAULT nextval('children_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: gouser
--
ALTER TABLE ONLY data_types ALTER COLUMN id SET DEFAULT nextval('data_types_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: gouser
--
ALTER TABLE ONLY people ALTER COLUMN id SET DEFAULT nextval('people_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: gouser
--
ALTER TABLE ONLY places ALTER COLUMN id SET DEFAULT nextval('places_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: gouser
--
ALTER TABLE ONLY visits ALTER COLUMN id SET DEFAULT nextval('visits_id_seq'::regclass);
--
-- Name: children_pkey; Type: CONSTRAINT; Schema: public; Owner: gouser; Tablespace:
--
ALTER TABLE ONLY children
ADD CONSTRAINT children_pkey PRIMARY KEY (id);
--
-- Name: data_types_pkey; Type: CONSTRAINT; Schema: public; Owner: gouser; Tablespace:
--
ALTER TABLE ONLY data_types
ADD CONSTRAINT data_types_pkey PRIMARY KEY (id);
--
-- Name: people_pkey; Type: CONSTRAINT; Schema: public; Owner: gouser; Tablespace:
--
ALTER TABLE ONLY people
ADD CONSTRAINT people_pkey PRIMARY KEY (id);
--
-- Name: places_pkey; Type: CONSTRAINT; Schema: public; Owner: gouser; Tablespace:
--
ALTER TABLE ONLY places
ADD CONSTRAINT places_pkey PRIMARY KEY (id);
--
-- Name: visits_pkey; Type: CONSTRAINT; Schema: public; Owner: gouser; Tablespace:
--
ALTER TABLE ONLY visits
ADD CONSTRAINT visits_pkey PRIMARY KEY (id);
--
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;
--
-- PostgreSQL database dump complete
--
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment