[wellwell-devel] [SCM] Interchange wellwell catalog branch, master, updated. c3f9863c42c4e45c09704cd2e7af0425c3aec858

Stefan Hornburg racke at rt.icdevgroup.org
Tue Jan 27 16:58:59 UTC 2009


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Interchange wellwell catalog".

The branch, master has been updated
       via  c3f9863c42c4e45c09704cd2e7af0425c3aec858 (commit)
      from  ab90f600497d4298acb7bfc4d519b88879a05781 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c3f9863c42c4e45c09704cd2e7af0425c3aec858
Author: Stefan Hornburg (Racke) <racke at linuxia.de>
Date:   Tue Jan 27 17:58:22 2009 +0100

    missing table structure for form_components added

-----------------------------------------------------------------------

Summary of changes and diff:
 database/mysql/form_components.sql |    9 +++++++++
 database/pgsql/form_components.sql |    8 ++++++++
 2 files changed, 17 insertions(+), 0 deletions(-)
 create mode 100644 database/mysql/form_components.sql
 create mode 100644 database/pgsql/form_components.sql

diff --git a/database/mysql/form_components.sql b/database/mysql/form_components.sql
new file mode 100644
index 0000000..1181da3
--- /dev/null
+++ b/database/mysql/form_components.sql
@@ -0,0 +1,9 @@
+CREATE TABLE form_components (
+  name varchar(255) NOT NULL DEFAULT '',
+  part varchar(255) NOT NULL DEFAULT '',
+  component varchar(255) NOT NULL DEFAULT '',
+  location varchar(255) NOT NULL DEFAULT '',
+  priority int NOT NULL DEFAULT 0,
+  KEY (name, part)
+);
+CREATE INDEX form_components_name_part ON form_components(name,part);
\ No newline at end of file
diff --git a/database/pgsql/form_components.sql b/database/pgsql/form_components.sql
new file mode 100644
index 0000000..0dbd0c0
--- /dev/null
+++ b/database/pgsql/form_components.sql
@@ -0,0 +1,8 @@
+CREATE TABLE form_components (
+  name varchar(255) NOT NULL DEFAULT '',
+  part varchar(255) NOT NULL DEFAULT '',
+  component varchar(255) NOT NULL DEFAULT '',
+  location varchar(255) NOT NULL DEFAULT '',
+  priority integer NOT NULL DEFAULT 0
+);
+CREATE INDEX form_components_name_part ON form_components(name,part);
\ No newline at end of file


hooks/post-receive
-- 
Interchange wellwell catalog



More information about the wellwell-devel mailing list