PHP Classes

File: tokens.sql

Recommend this page to a friend!
  Classes of Java Mon   jframe   tokens.sql   Download  
File: tokens.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: jframe
Process and dispatch requests using MVC pattern
Author: By
Last change:
Date: 6 years ago
Size: 1,446 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 4.8.0-dev -- https://www.phpmyadmin.net/ -- -- Host: 192.168.30.23 -- ?? ??: 17-07-22 09:20 -- ?? ??: 8.0.0-dmr -- PHP ??: 7.0.19-1 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 */; -- -- ??????: `menagerie` -- -- -------------------------------------------------------- -- -- ??? ?? `tokens` -- CREATE TABLE `tokens` ( `seq` int(11) NOT NULL, `id` int(11) NOT NULL, `password` int(11) NOT NULL, `type` int(11) NOT NULL, `token` int(11) NOT NULL, `created` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='auth'; -- -- ??? ???? ??? -- -- -- ???? ??? `tokens` -- ALTER TABLE `tokens` ADD PRIMARY KEY (`seq`), ADD UNIQUE KEY `identity` (`id`); -- -- ??? ???? AUTO_INCREMENT -- -- -- ???? AUTO_INCREMENT `tokens` -- ALTER TABLE `tokens` MODIFY `seq` int(11) NOT NULL AUTO_INCREMENT;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 */;