Skip to content

Instantly share code, notes, and snippets.

@cayblood
Created November 27, 2010 21:11
Show Gist options
  • Save cayblood/718275 to your computer and use it in GitHub Desktop.
Save cayblood/718275 to your computer and use it in GitHub Desktop.
-- MySQL dump 10.13 Distrib 5.1.51, for apple-darwin10.4.0 (i386)
--
-- Host: localhost Database: example
-- ------------------------------------------------------
-- Server version 5.1.51
/*!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 `accounts`
--
DROP TABLE IF EXISTS `accounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `accounts` (
`id` varchar(36) NOT NULL,
`account_nbr` varchar(25) DEFAULT '0',
`created_by` varchar(36) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_by` varchar(36) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`client_id` varchar(36) DEFAULT NULL,
`wholesaler_id` varchar(36) DEFAULT NULL,
`is_primary` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `index_accounts_on_client_id_and_is_primary` (`client_id`,`is_primary`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `accounts`
--
LOCK TABLES `accounts` WRITE;
/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
INSERT INTO `accounts` VALUES ('fa51d5f2-7506-11dc-bb67-0016cbcc6803','017-085506','e427922e-28fa-11dc-b515-0016cbcc6803','2007-11-06 19:03:06','e427922e-28fa-11dc-b515-0016cbcc6803','2007-11-06 19:03:06','f7b0c34e-7506-11dc-bb67-0016cbcc6803','f87b46e6-7b05-11dc-a12f-0016cbcc6803',1);
/*!40000 ALTER TABLE `accounts` 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 2010-11-27 22:04:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment