Changeset 407:eb5bd0f66932 for inc/dbschema
- Timestamp:
- 06/23/11 13:00:59 (14 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/dbschema/db-schema.php
r270 r407 152 152 ->media_id ('bigint', 0, false) 153 153 ->post_id ('bigint', 0, false) 154 155 ->primary('pk_post_media','media_id','post_id') 154 ->link_type ('varchar', 32, false, "'attachment'") 155 156 ->primary('pk_post_media','media_id','post_id','link_type') 156 157 ; 157 158 … … 235 236 $_s->media->index ('idx_media_user_id', 'btree', 'user_id'); 236 237 $_s->post_media->index ('idx_post_media_post_id', 'btree', 'post_id'); 238 $_s->post_media->index ('idx_post_media_media_id', 'btree', 'media_id'); 237 239 $_s->log->index ('idx_log_user_id', 'btree', 'user_id'); 238 240 $_s->comment->index ('idx_comment_post_id', 'btree', 'post_id');
Note: See TracChangeset
for help on using the changeset viewer.