]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/basic/DB/passwd.sql
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / auth / basic / DB / passwd.sql
1 ## Copyright (C) 1996-2018 The Squid Software Foundation and contributors
2 ##
3 ## Squid software is distributed under GPLv2+ license and includes
4 ## contributions from numerous individuals and organizations.
5 ## Please see the COPYING and CONTRIBUTORS files for details.
6 ##
7
8 CREATE TABLE `passwd` (
9 `user` varchar(32) NOT NULL default '',
10 `password` varchar(35) NOT NULL default '',
11 `enabled` tinyint(1) NOT NULL default '1',
12 `fullname` varchar(60) default NULL,
13 `comment` varchar(60) default NULL,
14 PRIMARY KEY (`user`)
15 );