File: Create_Table.sql

package info (click to toggle)
libalog 0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,056 kB
  • ctags: 465
  • sloc: ada: 5,203; makefile: 166; sql: 9; sh: 2
file content (9 lines) | stat: -rw-r--r-- 163 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
DROP TABLE ALOG;

CREATE TABLE ALOG (
	level		character varying(10),
	timestamp	timestamp with time zone,
	message		text
);

GRANT ALL PRIVILEGES ON ALOG TO alog;