PHP Classes

File: public/install/tables/pm_domains.sql

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   public/install/tables/pm_domains.sql   Download  
File: public/install/tables/pm_domains.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change: [NEW] Update domains table on record create/update/delete
[FIX] PM_DISABLE_SYSLOG renamed to DISABLE_SYSLOG
[FIX] minor bug fixes
v2.2.0
Date: 1 year ago
Size: 557 bytes
 

Contents

Class file image Download
-- -------------------------------------------------------- -- -- `pm_domains` -- CREATE TABLE `pm_domains` ( `rowid` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(255) COLLATE table_collation NOT NULL, `website` int(11) DEFAULT 0, `ftp` int(11) DEFAULT 0, `data_base` int(11) DEFAULT 0, `fk_user` int(11) NOT NULL, `tms` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`rowid`), KEY `domains_fk_user` (`fk_user`) ) ENGINE=InnoDB DEFAULT CHARSET=table_character_set COLLATE=table_collation;