Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/vendor/shipu/watchable/src/Macros/
Upload File :
Current File : /home/users/unlimited/www/foodbank.codeskitter.site/vendor/shipu/watchable/src/Macros/bigMorphs.php

<?php

use Illuminate\Database\Schema\Blueprint;

/**
 * Add nullable audit columns for a polymorphic table.
 *
 * @param bool $nullable
 * @return void
 */
Blueprint::macro('bigMorphs', function ($name, $indexName = null) {
    $this->unsignedBigInteger("{$name}_id");
    $this->string("{$name}_type");
    $this->index(["{$name}_id", "{$name}_type"], $indexName);
});