Skip to content

Instantly share code, notes, and snippets.

@avinashseth
Created June 22, 2016 06:34
Show Gist options
  • Save avinashseth/8ce153558049114dd796c61d26a9b047 to your computer and use it in GitHub Desktop.
Save avinashseth/8ce153558049114dd796c61d26a9b047 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:33 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_login_information`
--
CREATE TABLE IF NOT EXISTS `owner_login_information` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner_unique` varchar(15) NOT NULL,
`owner_email` varchar(50) NOT NULL,
`owner_password` varchar(50) 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',
`status` tinyint(1) NOT NULL,
`verification` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `owner_unique` (`owner_unique`,`owner_email`)
) 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