File: sample.sql

package info (click to toggle)
pam-pgsql 0.7.1-4%2Bsqueeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,532 kB
  • ctags: 328
  • sloc: sh: 10,098; ansic: 1,556; makefile: 50; sql: 8
file content (17 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- This is a sample for a table storing unix users
-- pam-pgsql

-- William Grzybowski <william@agencialivre.com.br>

begin;

	CREATE TABLE account (

		username varchar(255) UNIQUE NOT NULL,
		password varchar(200),
		expired boolean,
		newtok boolean

	);

end;