Skip to content

Instantly share code, notes, and snippets.

@avinashseth
Created June 22, 2016 06:35
Show Gist options
  • Save avinashseth/674b2255ebef556a8a69be904305cfed to your computer and use it in GitHub Desktop.
Save avinashseth/674b2255ebef556a8a69be904305cfed to your computer and use it in GitHub Desktop.
-- phpMyAdmin SQL Dump
-- version 4.1.6
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Jun 22, 2016 at 08:34 AM
-- Server version: 5.6.16
-- PHP Version: 5.5.9
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `a_pet_social_media`
--
-- --------------------------------------------------------
--
-- Table structure for table `owner_details`
--
CREATE TABLE IF NOT EXISTS `owner_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner_unique` varchar(15) NOT NULL,
`owner_name` varchar(50) NOT NULL,
`owner_age` int(3) NOT NULL,
`owner_gender` tinyint(1) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment