Skip to content

Instantly share code, notes, and snippets.

@ahmadrosid
Last active November 26, 2019 12:26
Show Gist options
  • Save ahmadrosid/c8aed3f94156ae73daa81d5e84d8fdeb to your computer and use it in GitHub Desktop.
Save ahmadrosid/c8aed3f94156ae73daa81d5e84d8fdeb to your computer and use it in GitHub Desktop.
-- phpMyAdmin SQL Dump
-- version 4.7.6
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Nov 26, 2019 at 01:26 PM
-- Server version: 8.0.16
-- PHP Version: 7.2.21
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!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 utf8mb4 */;
--
-- Database: `mns_service`
--
-- --------------------------------------------------------
--
-- Table structure for table `org_zipcode`
--
CREATE TABLE `org_zipcode` (
`id` int(10) UNSIGNED NOT NULL,
`org_id` int(11) NOT NULL,
`zip_code` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
`is_deleted` tinyint(1) NOT NULL,
`updated_at` timestamp NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `org_zipcode`
--
INSERT INTO `org_zipcode` (`id`, `org_id`, `zip_code`, `is_deleted`, `updated_at`) VALUES
(79, 101, '18041', 0, '2019-11-26 12:25:50'),
(80, 101, '2938', 0, '2019-11-26 12:25:50'),
(81, 101, '9377', 0, '2019-11-26 12:25:50');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `org_zipcode`
--
ALTER TABLE `org_zipcode`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `org_zipcode`
--
ALTER TABLE `org_zipcode`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=82;
COMMIT;
/*!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 */;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment