hasTable('talk_phone_numbers')) { return null; } $table = $schema->createTable('talk_phone_numbers'); $table->addColumn('id', Types::BIGINT, [ 'autoincrement' => true, 'notnull' => true, 'length' => 20, ]); $table->addColumn('phone_number', Types::STRING, [ 'notnull' => true, 'length' => 255, ]); $table->addColumn('actor_id', Types::STRING, [ 'notnull' => true, 'length' => 255, ]); $table->setPrimaryKey(['id']); $table->addUniqueIndex(['phone_number']); $table->addIndex(['actor_id']); return $schema; } }