-- phpMyAdmin SQL Dump
-- version 3.1.3.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Dec 22, 2010 at 04:34 PM
-- Server version: 6.0.10
-- PHP Version: 5.2.9-1
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: `licence`
--
-- --------------------------------------------------------
--
-- Table structure for table `activation`
--
CREATE TABLE IF NOT EXISTS `activation` (
`activation_id` int(11) NOT NULL AUTO_INCREMENT,
`activation_username` varchar(50) NOT NULL,
`activation_serial` varchar(100) NOT NULL,
`activation_domain` varchar(30) NOT NULL,
`activation_ip` varchar(15) NOT NULL,
`activation_state` enum('0','1') NOT NULL,
PRIMARY KEY (`activation_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `activation`
--
INSERT INTO `activation` (`activation_id`, `activation_username`, `activation_serial`, `activation_domain`, `activation_ip`, `activation_state`) VALUES
(1, 'Progvig', '238W1W1W2-238W1W1W2-Q3342Q;2=,', '127.0.0.1', '127.0.0.1', '1');
|