view database/schema.sql @ 22:8870309149f8

add a descriptive comment
author David A. Holland
date Sun, 26 May 2013 17:24:13 -0400
parents 68cc276ac118
children 021ec7010271
line wrap: on
line source

-- Load the database schema.
-- Should be done as the swallowtail-admin user.

begin;

\i schema/version.sql
\i schema/config.sql

\i schema/users.sql

\i schema/bugs.sql
\i schema/messages.sql
\i schema/subscription.sql

\i schema/classify.sql

\i schema/logs.sql

commit;