Show
Ignore:
Timestamp:
08/14/07 01:49:05 (3 years ago)
Author:
eevee
Message:

Hurr forgot a table.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • veekun/trunk/script/base.sql

    r287 r289  
    166166  KEY FORUMID (forumid) 
    167167) ENGINE=InnoDB DEFAULT CHARSET=latin1; 
     168 
     169-- 
     170-- Table structure for table `thread_views` 
     171-- 
     172 
     173DROP TABLE IF EXISTS thread_views; 
     174CREATE TABLE thread_views ( 
     175  thread_id int(10) unsigned NOT NULL, 
     176  user_id int(10) unsigned NOT NULL, 
     177  last_viewed int(10) unsigned NOT NULL, 
     178  PRIMARY KEY  (thread_id,user_id) 
     179) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
    168180 
    169181--