Sequenzia/db/table_schema/production/posts_tags.php

25 lines
323 B
PHP
Raw Normal View History

2013-10-27 01:06:58 +02:00
<?php
return array (
0 =>
array (
'post_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'tag_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
),
1 =>
array (
'uni' =>
array (
0 => 'post_id',
1 => 'tag_id',
),
),
)
;