diff --git a/database/migrations/2018_12_24_164434_create_real_order_cards_table.php b/database/migrations/2018_12_24_164434_create_real_order_cards_table.php index dc102a8b..12556436 100644 --- a/database/migrations/2018_12_24_164434_create_real_order_cards_table.php +++ b/database/migrations/2018_12_24_164434_create_real_order_cards_table.php @@ -47,23 +47,23 @@ class CreateRealOrderCardsTable extends Migration $table->unique(['sim', 'deleted_at']); }); - Schema::table('real_added_order_renewal_cards', function (Blueprint $table) { + Schema::table('real_order_renewal_cards', function (Blueprint $table) { $table->unique(['sim', 'order_id']); }); - Schema::table('real_added_order_renewal_package_cards', function (Blueprint $table) { + Schema::table('real_order_renewal_package_cards', function (Blueprint $table) { $table->unique(['sim', 'order_id']); }); - Schema::table('real_added_order_flows_package_cards', function (Blueprint $table) { + Schema::table('real_order_flows_package_cards', function (Blueprint $table) { $table->unique(['sim', 'order_id']); }); - Schema::table('real_added_order_optional_package_cards', function (Blueprint $table) { + Schema::table('real_order_optional_package_cards', function (Blueprint $table) { $table->unique(['sim', 'order_id']); }); - Schema::table('real_added_order_additional_package_cards', function (Blueprint $table) { + Schema::table('real_order_additional_package_cards', function (Blueprint $table) { $table->unique(['sim', 'order_id']); }); }