PHP Classes

File: database/phpmvc.sql

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Simple, Fast, Lightweight PHP MVC Framework   database/phpmvc.sql   Download  
File: database/phpmvc.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple, Fast, Lightweight PHP MVC Framework
Route requests to controller classes or closures
Author: By
Last change:
Date: 1 year ago
Size: 1,790 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 5.1.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Jul 26, 2022 at 02:25 AM -- Server version: 5.7.34 -- PHP Version: 8.0.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 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: `phpmvc` -- -- -------------------------------------------------------- -- -- Table structure for table `portfolios` -- CREATE TABLE `portfolios` ( `id` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `title` varchar(200) NOT NULL, `description` text, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `portfolios` -- INSERT INTO `portfolios` (`id`, `status`, `title`, `description`, `created_at`) VALUES (1, 1, 'PHP MVC', 'Simple PHPMVC', '2022-07-19 01:33:52'), (2, 1, 'My Ecommerce', 'My Ecommerce', '2022-07-19 01:33:52'), (3, 0, 'CartPulse WordPress Plugin', 'CartPulse WordPress Plugin', '2022-07-19 01:33:52'); -- -- Indexes for dumped tables -- -- -- Indexes for table `portfolios` -- ALTER TABLE `portfolios` ADD PRIMARY KEY (`id`), ADD KEY `status` (`status`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `portfolios` -- ALTER TABLE `portfolios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; 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 */;