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

26
modules/test/db-mysql.sql Normal file
View file

@ -0,0 +1,26 @@
CREATE DATABASE IF NOT EXISTS helmaTest;
USE helmaTest;
GRANT ALL ON helmaTest.* TO helma@localhost IDENTIFIED BY 'secret';
DROP TABLE IF EXISTS tb_person;
DROP TABLE IF EXISTS tb_organisation;
CREATE TABLE tb_person (
person_id MEDIUMINT(10) NOT NULL,
person_name TINYTEXT,
person_height TINYINT unsigned,
person_dateofbirth DATETIME,
person_org_id MEDIUMINT(10) unsigned,
person_generic_prototype VARCHAR(30),
person_generic_id MEDIUMINT(10) unsigned,
PRIMARY KEY (person_id)
);
CREATE TABLE tb_organisation (
org_id MEDIUMINT(10) unsigned NOT NULL,
org_name TINYTEXT,
org_country TINYTEXT,
PRIMARY KEY (org_id)
);