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

Размер файла: 891B
  1. <?php
  2.  
  3. use Phinx\Migration\AbstractMigration;
  4. use Phinx\Db\Adapter\MysqlAdapter;
  5.  
  6. class CreateNewsTable extends AbstractMigration
  7. {
  8. /**
  9. * Change Method.
  10. */
  11. public function change()
  12. {
  13. $table = $this->table('news', ['collation' => 'utf8mb4_unicode_ci']);
  14. $table->addColumn('title', 'string', ['limit' => 100])
  15. ->addColumn('text', 'text', ['null' => true])
  16. ->addColumn('author', 'string', ['limit' => 20])
  17. ->addColumn('image', 'string', ['limit' => 30, 'null' => true])
  18. ->addColumn('time', 'integer')
  19. ->addColumn('comments', 'integer', ['limit' => MysqlAdapter::INT_MEDIUM, 'signed' => false, 'default' => 0])
  20. ->addColumn('closed', 'boolean', ['default' => 0])
  21. ->addColumn('top', 'boolean', ['default' => 0])
  22. ->addIndex('time')
  23. ->create();
  24. }
  25. }