Caio,
Segue o Dump com os dados.
O usuário do banco é aula@alura.com e a senha é aquela criptografada super dificil: 123456
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Sep 12, 2017 at 01:02 PM
-- Server version: 10.1.26-MariaDB
-- PHP Version: 7.1.9
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: `loja`
--
-- --------------------------------------------------------
--
-- Table structure for table `categorias`
--
CREATE TABLE `categorias` (
`id` int(11) NOT NULL,
`nome` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `categorias`
--
INSERT INTO `categorias` (`id`, `nome`) VALUES
(1, 'esporte'),
(2, 'escolar'),
(3, 'mobilidade'),
(4, 'programação'),
(5, 'guloseimas'),
(6, 'infraesturura');
-- --------------------------------------------------------
--
-- Table structure for table `produtos`
--
CREATE TABLE `produtos` (
`id` int(11) NOT NULL,
`nome` varchar(255) DEFAULT NULL,
`preco` decimal(10,2) DEFAULT NULL,
`descricao` text,
`categoria_id` int(11) DEFAULT NULL,
`usado` tinyint(1) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `produtos`
--
INSERT INTO `produtos` (`id`, `nome`, `preco`, `descricao`, `categoria_id`, `usado`) VALUES
(18, 'Livro PHP II', '25.00', 'Livro PHP II usado', 4, 1),
(19, 'Livro PHP I', '31.00', 'Livro PHP I. Orientação a Objetos', 4, 0),
(20, 'Linux', '120.00', 'Livro Linux do Pinguim', 6, 0),
(21, 'Bolo de chocolate', '5.00', 'Bolo de chocolate mordido com cobertura de avelãs', 5, 1);
-- --------------------------------------------------------
--
-- Table structure for table `usuarios`
--
CREATE TABLE `usuarios` (
`id` int(11) NOT NULL,
`email` varchar(255) DEFAULT NULL,
`senha` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `usuarios`
--
INSERT INTO `usuarios` (`id`, `email`, `senha`) VALUES
(1, 'aula@alura.com', 'e10adc3949ba59abbe56e057f20f883e');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `categorias`
--
ALTER TABLE `categorias`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `produtos`
--
ALTER TABLE `produtos`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `usuarios`
--
ALTER TABLE `usuarios`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `categorias`
--
ALTER TABLE `categorias`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `produtos`
--
ALTER TABLE `produtos`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT for table `usuarios`
--
ALTER TABLE `usuarios`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
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 */;
Qualquer coisa me avisa!
Abraços!