· 6 years ago · Jun 28, 2019, 03:28 PM
1-- phpMyAdmin SQL Dump
2-- version 4.1.14
3-- http://www.phpmyadmin.net
4--
5-- Host: 127.0.0.1
6-- Generation Time: Jun 28, 2019 at 05:25 PM
7-- Server version: 5.6.17
8-- PHP Version: 5.5.12
9
10SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11SET time_zone = "+00:00";
12
13--
14-- Database: `adresar`
15--
16
17-- --------------------------------------------------------
18
19--
20-- Table structure for table `korisnici`
21--
22
23DROP TABLE IF EXISTS `korisnici`;
24CREATE TABLE IF NOT EXISTS `korisnici` (
25 `id` int(11) NOT NULL AUTO_INCREMENT,
26 `email` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
27 `sifra` char(32) COLLATE utf8_unicode_ci DEFAULT NULL,
28 PRIMARY KEY (`id`)
29) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
30
31--
32-- Dumping data for table `korisnici`
33--
34
35INSERT INTO `korisnici` (`id`, `email`, `sifra`) VALUES
36(1, 'nikola@kavecan.com', '8c319f28d81d1527a9428e9a5c2195f5');