Wo ist die Tabelle "time_accounting_user_period"

Hilfe zu Znuny Problemen aller Art
Locked
six1
Znuny newbie
Posts: 9
Joined: 12 Dec 2007, 18:39

Wo ist die Tabelle "time_accounting_user_period"

Post by six1 »

tja, wo ist sie nur?
Das Log File meldet, das sie nicht vorhanden ist; zu Recht!
Ich habe nirgendwo einen Hinweis auf deren Struktur gefunden.

Woher bekomme ich die Info's, die Tabelle time_accounting_user_period zu erstellen?


Danke, Michael
six1
Znuny newbie
Posts: 9
Joined: 12 Dec 2007, 18:39

Wo ist die Tabelle "time_accounting_user_period"

Post by six1 »

Goggle konnte mit dem Tabellennamen was anfangen ;-)
Hier die Struktur, falls jemand ähnliche Probleme haben sollte:

Code: Select all

-- ----------------------------
-- Table structure for time_accounting_user_period
-- ----------------------------
CREATE TABLE `time_accounting_user_period` (
  `id` bigint(20) NOT NULL auto_increment,
  `user_id` int(11) NOT NULL,
  `preference_period` int(11) NOT NULL,
  `date_start` date NOT NULL,
  `date_end` date NOT NULL,
  `weekly_hours` decimal(10,2) default NULL,
  `leave_days` decimal(10,2) default NULL,
  `overtime` decimal(10,2) default NULL,
  `status` varchar(15) collate latin1_general_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

-- ----------------------------
-- Records 
-- ----------------------------
Locked