mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-24 22:11:01 -06:00
commit
d2a17e7384
@ -8,11 +8,15 @@ class VisiosoftModuleAdvsAlterIndexToAllTable extends Migration
|
|||||||
{
|
{
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('advs_productoptions_translations', function (Blueprint $table) {
|
Schema::table('advs_productoptions_value_translations', function (Blueprint $table) {
|
||||||
|
$table->index('entry_id');
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::table('advs_advs_translations', function (Blueprint $table) {
|
||||||
$table->index('entry_id');
|
$table->index('entry_id');
|
||||||
});
|
});
|
||||||
|
|
||||||
Schema::table('advs_productoptions_value_translations', function (Blueprint $table) {
|
Schema::table('advs_productoptions_translations', function (Blueprint $table) {
|
||||||
$table->index('entry_id');
|
$table->index('entry_id');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -11,9 +11,5 @@ class VisiosoftModuleCatsAlterIndexToAllTable extends Migration
|
|||||||
Schema::table('cats_category_translations', function (Blueprint $table) {
|
Schema::table('cats_category_translations', function (Blueprint $table) {
|
||||||
$table->index('entry_id');
|
$table->index('entry_id');
|
||||||
});
|
});
|
||||||
|
|
||||||
Schema::table('cats_placeholderforsearch_translations', function (Blueprint $table) {
|
|
||||||
$table->index('entry_id');
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user