Просмотр файла app/database/migrations/20161216120452_create_files_forum_table.php

Размер файла: 917B
  1. <?php
  2.  
  3. use Phinx\Migration\AbstractMigration;
  4. use Phinx\Db\Adapter\MysqlAdapter;
  5.  
  6. class CreateFilesForumTable extends AbstractMigration
  7. {
  8. /**
  9. * Change Method.
  10. */
  11. public function change()
  12. {
  13. $table = $this->table('files_forum', ['collation' => 'utf8mb4_unicode_ci']);
  14. $table->addColumn('topic_id', 'integer', ['limit' => MysqlAdapter::INT_MEDIUM, 'signed' => false])
  15. ->addColumn('post_id', 'integer', ['signed' => false])
  16. ->addColumn('hash', 'string', ['limit' => 40])
  17. ->addColumn('name', 'string', ['limit' => 60])
  18. ->addColumn('size', 'integer', ['signed' => false])
  19. ->addColumn('user', 'string', ['limit' => 20])
  20. ->addColumn('time', 'integer')
  21. ->addIndex('topic_id')
  22. ->addIndex('post_id')
  23. ->addIndex('user')
  24. ->addIndex('time')
  25. ->create();
  26. }
  27. }