PHP Classes

File: banco.sql

Recommend this page to a friend!
  Classes of Marcelo Telles   CRUD PHP MVC   banco.sql   Download  
File: banco.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CRUD PHP MVC
Application that uses the MVC Design Pattern
Author: By
Last change:
Date: 5 months ago
Size: 1,046 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Tempo de geração: 11/05/2024 às 13:14 -- Versão do servidor: 8.0.28 -- Versão do PHP: 8.3.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; -- -- Banco de dados: `base01` -- -- -------------------------------------------------------- -- -- Estrutura para tabela `article` -- CREATE TABLE `article` ( `id` int NOT NULL, `title` varchar(220) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `content` varchar(220) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created` datetime NOT NULL, `modified` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci; -- -- Índices para tabelas despejadas -- -- -- Índices de tabela `article` -- ALTER TABLE `article` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT para tabelas despejadas -- -- -- AUTO_INCREMENT de tabela `article` -- ALTER TABLE `article` MODIFY `id` int NOT NULL AUTO_INCREMENT; COMMIT;