From 8824f7d07016fd571194eecf45657fe9c9b2e643 Mon Sep 17 00:00:00 2001 From: CMDR furrycat Date: Tue, 24 Nov 2015 11:58:45 -0500 Subject: [PATCH] Initial schema. --- .gitignore | 6 ++ Makefile | 7 ++ composer.json | 7 ++ propel/build.properties | 3 + propel/schema.xml | 176 ++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 199 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 composer.json create mode 100644 propel/build.properties create mode 100644 propel/schema.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b778276 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +propel/build/ +propel/schema-transformed.xml +propel/runtime-conf.xml +vendor/ +composer.lock +composer.phar diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f9340e4 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: composer.phar + php composer.phar install + chmod 755 vendor/propel/propel1/generator/bin/phing.php + cd propel && ../vendor/propel/propel1/generator/bin/propel-gen + +composer.phar: + curl -sS https://getcomposer.org/installer | php diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1b3da4a --- /dev/null +++ b/composer.json @@ -0,0 +1,7 @@ +{ + "name": "buckyball/buckyball", + "description": "Buckyball", + "require": { + "propel/propel1": "1.6.9" + } +} diff --git a/propel/build.properties b/propel/build.properties new file mode 100644 index 0000000..e93c62c --- /dev/null +++ b/propel/build.properties @@ -0,0 +1,3 @@ +propel.database = mysql +propel.project = buckyball +propel.defaultDateformat = %F diff --git a/propel/schema.xml b/propel/schema.xml new file mode 100644 index 0000000..5a4bdc3 --- /dev/null +++ b/propel/schema.xml @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
-- 2.7.4