Location based Alert Rule (#11128)

* Location base Alert Rule

* travis fix
This commit is contained in:
SourceDoctor
2020-02-12 19:53:26 +01:00
committed by GitHub
parent dfd6f2d3b6
commit 5bfc44f812
9 changed files with 100 additions and 25 deletions

View File

@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateAlertLocationMapTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('alert_location_map', function (Blueprint $table) {
$table->increments('id');
$table->unsignedInteger('rule_id');
$table->unsignedInteger('location_id');
$table->unique(['rule_id','location_id'], 'alert_location_map_rule_id_location_id_uindex');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('alert_location_map');
}
}