PHP Classes

File: public/install/tables/pm_users.sql

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   public/install/tables/pm_users.sql   Download  
File: public/install/tables/pm_users.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: v2.2.0
Date: 1 year ago
Size: 849 bytes
 

Contents

Class file image Download
-- -------------------------------------------------------- -- -- `pm_users` -- CREATE TABLE `pm_users` ( `rowid` int(11) NOT NULL AUTO_INCREMENT, `first_name` varchar(128) COLLATE table_collation DEFAULT NULL, `last_name` varchar(128) COLLATE table_collation DEFAULT NULL, `username` varchar(50) COLLATE table_collation NOT NULL, `password` varchar(255) COLLATE table_collation NOT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `theme` varchar(50) COLLATE table_collation DEFAULT NULL, `language` varchar(8) COLLATE table_collation DEFAULT NULL, `tms` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `admin` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (rowid), UNIQUE KEY `username` (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=table_character_set COLLATE=table_collation;