Login   Register  
PHP Classes
elePHPant
Icontem

File: table_regexp_store

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Uldis Nelsons  >  Regexp store  >  table_regexp_store  
File: table_regexp_store
Role: Auxiliary data
Content type: text/plain
Description: mysql tabel structure
Class: Regexp store
Apply regular expressions from a MySQL database
 

Contents

Class file image Download
CREATE TABLE `regexp_store` (
  `id` smallint(6) NOT NULL AUTO_INCREMENT,
  `group_name` char(25) NOT NULL DEFAULT '',
  `name` char(25) NOT NULL DEFAULT '',
  `sqn` smallint(6) NOT NULL DEFAULT '0',
  `begin_end_symbol` char(1) NOT NULL DEFAULT '',
  `pattern` varchar(1000) NOT NULL DEFAULT '',
  `replacement` varchar(1000) DEFAULT NULL,
  `comment` varchar(1000) DEFAULT NULL,
  `deleted` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=84 DEFAULT CHARSET=utf8;