Merge remote-tracking branch 'modules/master' into subtree

this merges the master head of https://github.com/helma-org/apps-modules-mirror into helma
This commit is contained in:
Simon Oberhammer 2012-03-27 11:46:35 +02:00
commit 226552bc24
53 changed files with 12023 additions and 0 deletions

View file

@ -0,0 +1,15 @@
CREATE TABLE tb_person (
person_id NUMBER(10) NOT NULL,
person_name VARCHAR2(255),
person_height NUMBER(10),
person_dateofbirth DATE,
person_org_id NUMBER(10),
PRIMARY KEY (person_id)
);
CREATE TABLE tb_organisation (
org_id NUMBER(10) NOT NULL,
org_name VARCHAR2(255),
org_country VARCHAR2(255),
PRIMARY KEY (org_id)
);