[AB-103] adding triggers to update created and updating attributes on tables

fixing error handling in installer
merging change sets to larger operations
adding check constraints
fixing suggestion id handling
applying naming conventions to various columns
adding indices to tables
adding user in server and user locking
This commit is contained in:
Sheldan
2021-02-07 03:06:48 +01:00
parent dac3b0887f
commit 038d5c3832
126 changed files with 1416 additions and 986 deletions

View File

@@ -12,7 +12,9 @@
<constraints nullable="false" primaryKey="true" primaryKeyName="template_pkey"/>
</column>
<column name="section" type="VARCHAR(255)"/>
<column name="last_modified" type="TIMESTAMP WITHOUT TIME ZONE"/>
<column name="last_modified" type="TIMESTAMP WITHOUT TIME ZONE">
<constraints nullable="false"/>
</column>
<column name="content" type="VARCHAR(4000)"/>
<column name="created" type="TIMESTAMP WITHOUT TIME ZONE"/>
<column name="updated" type="TIMESTAMP WITHOUT TIME ZONE"/>