Advertisement
Guest User

Untitled

a guest
Apr 28th, 2012
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.59 KB | None | 0 0
  1. -- Adminer 3.3.1 MySQL dump
  2.  
  3. SET NAMES utf8;
  4. SET foreign_key_checks = 0;
  5. SET time_zone = 'SYSTEM';
  6. SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
  7.  
  8. DROP TABLE IF EXISTS `inventory_log`;
  9. CREATE TABLE `inventory_log` (
  10.   `id` int(11) NOT NULL AUTO_INCREMENT,
  11.   `owner` varchar(32) NOT NULL,
  12.   `world` varchar(255) NOT NULL,
  13.   `ischest` tinyint(1) NOT NULL,
  14.   `inventory` longtext NOT NULL,
  15.   `pendings` longtext NOT NULL,
  16.   `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  17.   PRIMARY KEY (`id`)
  18. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  19.  
  20.  
  21. -- 2012-04-28 19:33:44
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement