diff --git a/extensions/flags/migrations/2018_09_15_043621_add_flags_indices.php b/extensions/flags/migrations/2018_09_15_043621_add_flags_indices.php new file mode 100644 index 000000000..a6fbcdd47 --- /dev/null +++ b/extensions/flags/migrations/2018_09_15_043621_add_flags_indices.php @@ -0,0 +1,27 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Database\Schema\Builder; + +return [ + 'up' => function (Builder $schema) { + $schema->table('flags', function (Blueprint $table) { + $table->index('created_at'); + }); + }, + + 'down' => function (Builder $schema) { + $schema->table('flags', function (Blueprint $table) { + $table->dropIndex(['created_at']); + }); + } +];