Trac is being migrated to new services! Issues can be found in our new YouTrack instance and WIKI pages can be found on our website.

Changes between Version 29 and Version 30 of RemoteLogging


Ignore:
Timestamp:
Aug 20, 2007, 11:34:01 AM (16 years ago)
Author:
mshkutkov
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RemoteLogging

    v29 v30  
    101101    * flags: integer
    102102
     103== Supported database engines ==
     104Database Logger uses libdbi, so expected that it will support several database engines, such as Firebird/Interbase, FreeTDS (provides access to MS SQL Server and Sybase), MySQL, PostgreSQL,
     105SQLite/SQLite3.
    103106
     107At present moment I'm working with MySQL database.
     108
     109=== MySQL ===
     110
     111{{{
     112DROP TABLE IF EXISTS `protocols`;
     113CREATE TABLE `protocols` (
     114  `id` int NOT NULL auto_increment,
     115  `name` VARCHAR(255) NOT NULL,
     116  PRIMARY KEY  (`id`)
     117) ENGINE=MyISAM DEFAULT CHARSET=UTF8;
     118
     119DROP TABLE IF EXISTS `accounts`;
     120CREATE TABLE `accounts` (
     121  `id` int NOT NULL auto_increment,
     122  `name` VARCHAR(255) NOT NULL,
     123  `protocolId` int NOT NULL REFERENCES protocols(`id`),
     124  PRIMARY KEY  (`id`)
     125) ENGINE=MyISAM DEFAULT CHARSET=UTF8;
     126
     127DROP TABLE IF EXISTS `buddies`;
     128CREATE TABLE `buddies` (
     129  `id` int NOT NULL auto_increment,
     130  `name` VARCHAR(255) NOT NULL,
     131  `type` int,
     132  `accountId` int NOT NULL REFERENCES accounts(`id`),
     133  PRIMARY KEY  (`id`)
     134) ENGINE=MyISAM DEFAULT CHARSET=UTF8;
     135
     136DROP TABLE IF EXISTS `conversations`;
     137CREATE TABLE `conversations` (
     138  `id` int NOT NULL auto_increment,
     139  `datetime` int,
     140  `size` int,
     141  `accountId` int NOT NULL REFERENCES accounts(`id`),
     142  `buddyId` int NOT NULL REFERENCES buddies(`id`),
     143  PRIMARY KEY  (`id`)
     144) ENGINE=MyISAM DEFAULT CHARSET=UTF8;
     145
     146DROP TABLE IF EXISTS `messages`;
     147CREATE TABLE `messages` (
     148  `id` int NOT NULL auto_increment,
     149  `conversationId` int NOT NULL REFERENCES conversations(`id`),
     150  `ownerName` VARCHAR(255) NOT NULL,
     151  `datetime` int,
     152  `text` LONGTEXT NOT NULL,
     153  `flags` int,
     154  PRIMARY KEY  (`id`)
     155) ENGINE=MyISAM DEFAULT CHARSET=UTF8;
     156
     157}}}
    104158----
    105159* - current work
All information, including names and email addresses, entered onto this website or sent to mailing lists affiliated with this website will be public. Do not post confidential information, especially passwords!