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

Размер файла: 505B
  1. <?php
  2.  
  3. use Phinx\Migration\AbstractMigration;
  4.  
  5. class CreateBanTable extends AbstractMigration
  6. {
  7. /**
  8. * Migrate Change.
  9. */
  10. public function change()
  11. {
  12. $table = $this->table('ban', ['collation' => 'utf8mb4_unicode_ci']);
  13. $table->addColumn('ip', 'string', ['limit' => 15])
  14. ->addColumn('user', 'string', ['limit' => 20, 'null' => true])
  15. ->addColumn('time', 'integer')
  16. ->addIndex('ip', ['unique' => true])
  17. ->create();
  18. }
  19. }