Changeset 289 for veekun/trunk/script/base.sql
- Timestamp:
- 08/14/07 01:49:05 (3 years ago)
- Files:
-
- 1 modified
-
veekun/trunk/script/base.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
veekun/trunk/script/base.sql
r287 r289 166 166 KEY FORUMID (forumid) 167 167 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 168 169 -- 170 -- Table structure for table `thread_views` 171 -- 172 173 DROP TABLE IF EXISTS thread_views; 174 CREATE 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; 168 180 169 181 --
