ifms-faltas/dump/projetosifms.sql
2023-04-18 16:07:16 -04:00

124 lines
2.8 KiB
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- phpMyAdmin SQL Dump
-- version 4.3.7
-- http://www.phpmyadmin.net
--
-- Host: mysql04-farm88.kinghost.net
-- Tempo de geração: 24/02/2023 às 15:02
-- Versão do servidor: 10.6.11-MariaDB-log
-- Versão do PHP: 5.3.29
SET
SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 utf8 */
;
--
-- Banco de dados: `projetosifms`
--
-- --------------------------------------------------------
--
-- Estrutura para tabela `acoes`
--
CREATE TABLE IF NOT EXISTS `acoes` (
`matricula` text NOT NULL,
`whats` int(1) NOT NULL,
`fone` int(1) NOT NULL,
`visita` int(1) NOT NULL,
`sucesso` int(1) NOT NULL,
`comentario` text NOT NULL,
`email` int(1) NOT NULL,
`pessoal` int(11) NOT NULL
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;
--
-- Fazendo dump de dados para tabela `acoes`
--
INSERT INTO
`acoes` (
`matricula`,
`whats`,
`fone`,
`visita`,
`sucesso`,
`comentario`,
`email`,
`pessoal`
)
VALUES
('2019107036083-8', 0, 0, 0, 0, '', 0, 0),
(
'2019107036010-2',
1,
0,
0,
0,
'No dia 31 de agosto de 2022 bati um papo com o estudante. Não vejo necessidade de visita ao domicílio. (Rogério Cardoso)\n\n',
0,
1
);
-- --------------------------------------------------------
--
-- Estrutura para tabela `fotos`
--
CREATE TABLE IF NOT EXISTS `fotos` (
`matricula` text NOT NULL,
`imagem_pequena` text NOT NULL,
`imagem_grande` text NOT NULL
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `ultimo_relatorio`
--
CREATE TABLE IF NOT EXISTS `ultimo_relatorio` (
`estudante` text NOT NULL,
`email` text NOT NULL,
`telefone` text NOT NULL,
`endereco` text NOT NULL
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = COMPACT;
-- --------------------------------------------------------
--
-- Estrutura para tabela `usuarios`
--
CREATE TABLE IF NOT EXISTS `usuarios` (
`email` text NOT NULL,
`nome` text NOT NULL,
`senha` text NOT NULL,
`token` text NOT NULL
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;
--
-- Fazendo dump de dados para tabela `usuarios`
--
INSERT INTO
`usuarios` (`email`, `nome`, `senha`, `token`)
VALUES
(
'dev@local.com',
'dev',
'senha',
''
);
/*!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 */
;