Making WordPress.org


Ignore:
Timestamp:
08/27/2015 07:21:31 AM (9 years ago)
Author:
dd32
Message:

Translate: Log Discarded Warnings: Add the CREATE TABLE syntax for the custom table the plugin requires.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/translate.wordpress.org/includes/gp-plugins/wporg-log-discarded-warnings/wporg-log-discarded-warnings.php

    r1281 r1850  
    4949}
    5050GP::$plugins->wporg_log_discared_warnings = new GP_WPorg_Log_Discarded_Warnings;
     51
     52/*
     53Required Table:
     54
     55CREATE TABLE `gp_dotorg_warnings` (
     56  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
     57  `project_id` bigint(20) unsigned NOT NULL DEFAULT '0',
     58  `translation_set` bigint(20) unsigned NOT NULL DEFAULT '0',
     59  `translation` bigint(20) unsigned NOT NULL DEFAULT '0',
     60  `warning` varchar(20) NOT NULL DEFAULT '',
     61  `user` bigint(20) unsigned NOT NULL DEFAULT '0',
     62  `status` varchar(20) NOT NULL DEFAULT '',
     63  PRIMARY KEY (`ID`)
     64) ENGINE=MyISAM DEFAULT CHARSET=latin1;
     65
     66*/
Note: See TracChangeset for help on using the changeset viewer.