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:
commit
226552bc24
53 changed files with 12023 additions and 0 deletions
15
modules/test/db-oracle.sql
Normal file
15
modules/test/db-oracle.sql
Normal 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)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue