Просмотр файла database/migrations/20180420180030_create_notices_table.php

Размер файла: 870B
<?php

use Phinx\Migration\AbstractMigration;

class CreateNoticesTable extends AbstractMigration
{
    /**
     * Change Method.
     */
    public function change()
    {
        if (! $this->hasTable('notices')) {
            $table = $this->table('notices', ['engine' => config('DB_ENGINE'), 'collation' => config('DB_COLLATION')]);
            $table
                ->addColumn('type', 'string', ['limit' => 20])
                ->addColumn('name', 'string', ['limit' => 100])
                ->addColumn('text', 'text', ['null' => true])
                ->addColumn('user_id', 'integer')
                ->addColumn('created_at', 'integer')
                ->addColumn('updated_at', 'integer')
                ->addColumn('protect', 'boolean', ['default' => 0])
                ->addIndex('type', ['unique' => true])
                ->create();
        }
    }
}