/* ELMAH - Error Logging Modules and Handlers for ASP.NET Author(s): Laimonas Simutis, laimis@gmail.com Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ -- ELMAH DDL script for PostgreSQL based on DDL script for Microsoft SQL Server -- $Id: Pgsql.sql 696 2010-01-09 17:41:05Z azizatif $ /* ------------------------------------------------------------------------ TABLES ------------------------------------------------------------------------ */ CREATE SEQUENCE ELMAH_Error_SEQUENCE; CREATE TABLE ELMAH_Error ( ErrorId CHAR(36) NOT NULL, Application VARCHAR(60) NOT NULL, Host VARCHAR(50) NOT NULL, Type VARCHAR(100) NOT NULL, Source VARCHAR(60) NOT NULL, Message VARCHAR(500) NOT NULL, "User" VARCHAR(50) NOT NULL, StatusCode INT NOT NULL, TimeUtc TIMESTAMP NOT NULL, Sequence INT NOT NULL DEFAULT NEXTVAL('ELMAH_Error_SEQUENCE'), AllXml TEXT NOT NULL ); ALTER TABLE ELMAH_Error ADD CONSTRAINT PK_ELMAH_Error PRIMARY KEY (ErrorId); CREATE INDEX IX_ELMAH_Error_App_Time_Seq ON ELMAH_Error USING BTREE ( Application ASC, TimeUtc DESC, Sequence DESC );