Просмотр файла app/database/migrations/20161216120248_create_contact_table.php
- <?php
- use Phinx\Migration\AbstractMigration;
- class CreateContactTable extends AbstractMigration
- {
- /**
- * Change Method.
- */
- public function change()
- {
- $table = $this->table('contact', ['collation' => 'utf8mb4_unicode_ci']);
- $table->addColumn('user', 'string', ['limit' => 20])
- ->addColumn('name', 'string', ['limit' => 20])
- ->addColumn('text', 'text', ['null' => true])
- ->addColumn('time', 'integer')
- ->addIndex('time')
- ->addIndex('user')
- ->create();
- }
- }