. // }}} namespace App\Entity; /** * Entity for relating a file to a post * * @category DB * @package GNUsocial * * @author Zach Copley * @copyright 2010 StatusNet Inc. * @author Mikael Nordfeldth * @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org * @author Hugo Sales * @copyright 2020 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class FileToPost { // {{{ Autocode // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'file_to_post', 'fields' => [ 'file_id' => ['type' => 'int', 'not null' => true, 'description' => 'id of URL/file'], 'post_id' => ['type' => 'int', 'not null' => true, 'description' => 'id of the notice it belongs to'], 'modified' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'], ], 'primary key' => ['file_id', 'post_id'], 'foreign keys' => [ 'file_to_post_file_id_fkey' => ['file', ['file_id' => 'id']], 'file_to_post_post_id_fkey' => ['notice', ['post_id' => 'id']], ], 'indexes' => [ 'file_id_idx' => ['file_id'], 'post_id_idx' => ['post_id'], ], ]; } }