Changeset 34 for trackback/install.sql

Show
Ignore:
Timestamp:
09/30/07 22:26:19 (6 years ago)
Author:
d0nut
Message:

updated trackback to 0.0.4 - from now on we also support pingbacks.
for that reason i took some gpl licensed code from the wordpress project.
this version does not work. there are some TODOs.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trackback/install.sql

    r32 r34  
    11ALTER TABLE wbb1_1_post ADD hasTrackback TINYINT(1) UNSIGNED NOT NULL; 
    2 ALTER TABLE wbb1_1_post ADD trackbackUrls TEXT NOT NULL DEFAULT ''; 
    32 
    43CREATE TABLE wbb1_1_trackback ( 
     
    1514) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
    1615 
     16CREATE TABLE wbb1_1_trackbackLog ( 
     17  postID int(10) unsigned NOT NULL, 
     18  alienURL varchar(255) NOT NULL DEFAULT '', 
     19  timestamp int(12) NOT NULL DEFAULT 0, 
     20  message varchar(255) NOT NULL DEFAULT '', 
     21  PRIMARY KEY (postID, alienUrl) 
     22) ENGINE=MyISAM DEFAULT CHARSET=utf8;