-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 20, 2010 at 01:28 PM
-- Server version: 5.1.40
-- PHP Version: 5.2.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";


/*!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 */;

--
-- Database: `bmcforu_transfer`
--

-- --------------------------------------------------------

--
-- Table structure for table `adminmessage`
--

CREATE TABLE IF NOT EXISTS `adminmessage` (
  `adminmessageid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `varname` varchar(250) NOT NULL DEFAULT '',
  `dismissable` smallint(5) unsigned NOT NULL DEFAULT '0',
  `script` varchar(50) NOT NULL DEFAULT '',
  `action` varchar(20) NOT NULL DEFAULT '',
  `execurl` mediumtext NOT NULL,
  `method` enum('get','post') NOT NULL DEFAULT 'post',
  `dateline` int(10) unsigned NOT NULL DEFAULT '0',
  `status` enum('undone','done','dismissed') NOT NULL DEFAULT 'undone',
  `statususerid` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`adminmessageid`),
  KEY `script_action` (`script`,`action`),
  KEY `varname` (`varname`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `adminmessage`
--

INSERT INTO `adminmessage` (`adminmessageid`, `varname`, `dismissable`, `script`, `action`, `execurl`, `method`, `dateline`, `status`, `statususerid`) VALUES
(1, 'after_upgrade_36_update_counters', 1, 'misc.php', 'updatethread', 'misc.php?do=updatethread', 'get', 1163388770, 'done', 0),
(2, 'after_upgrade_360rc1', 1, '', '', '', '', 1163389054, 'dismissed', 1),
(3, 'after_upgrade_37_modified_css', 1, 'template.php', 'modify', 'template.php?do=modify', 'get', 1214190907, 'done', 0),
(4, 'after_upgrade_37_moderator_permissions', 1, 'moderator.php', 'showlist', 'moderator.php?do=showlist', 'get', 1214191386, 'done', 1),
(5, 'after_upgrade_37_image_verification_disabled', 1, 'verify.php', '', 'verify.php', 'get', 1214191386, 'done', 0),
(6, 'after_upgrade_password_check', 1, 'passwordcheck.php', 'check', 'passwordcheck.php?do=check', 'get', 1221505380, 'dismissed', 1);

