--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/README Wed Dec 21 22:07:48 2011 +0100
@@ -0,0 +1,6 @@
+Zum installieren braucht Iro noch:
+
+- Diese wird in ./iro.conf, ~/.iro.conf und /etc/iro/iro.conf gesucht.
+Ein Beispiel ist in iro.conf.inst abgelegt.
+- Desweitern muss noch ein Script da sein (Bespiel in MyIro.inst), in dem die Benutzerdatenbank angegeben wird).
+- zuguter letzt muss noch eine Datenbank angelegt werden. Das Schema ist in iro.sql abgelegt.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/iro.sql Wed Dec 21 22:07:48 2011 +0100
@@ -0,0 +1,15 @@
+DROP TABLE IF EXISTS `acounting`;
+CREATE TABLE `acounting` (
+ `id` varchar(250) NOT NULL,
+ `tel` varchar(60) NOT NULL DEFAULT '',
+ `status` varchar(255) NOT NULL,
+ `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`,`tel`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+DROP TABLE IF EXISTS `job`;
+CREATE TABLE `job` (
+ `id` varchar(250) NOT NULL,
+ `user` varchar(50) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;