This commit is contained in:
Graham Campbell 2014-12-28 16:07:18 +00:00
parent b659d85673
commit 540f9aa538
21 changed files with 2 additions and 20 deletions

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateIncidentsTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateComponentsTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateSettingsTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateWebHooksTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateWebHookResponsesTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateIncidentTemplatesTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateMetricsTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateMetricPointsTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class UserIdColumnForComponents extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class UserIdColumnForIncidents extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateSubscribersTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class CreateServicesTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class AlterTableIncidentsRenameComponentColumn extends Migration
{
/**
* Run the migrations.
*

View File

@ -4,7 +4,6 @@ use Illuminate\Database\Migrations\Migration;
class CreateSessionTable extends Migration
{
/**
* Run the migrations.
*

View File

@ -5,7 +5,6 @@ use Illuminate\Database\Schema\Blueprint;
class AlterTableComponentsAddDeletedAt extends Migration
{
/**
* Run the migrations.
*
@ -25,5 +24,6 @@ class AlterTableComponentsAddDeletedAt extends Migration
*/
public function down()
{
//
}
}

View File

@ -2,7 +2,6 @@
class ComponentTableSeeder extends Seeder
{
/**
* Run the database seeds.
*

View File

@ -2,7 +2,6 @@
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*

View File

@ -2,7 +2,6 @@
class IncidentTableSeeder extends Seeder
{
/**
* Run the database seeds.
*

View File

@ -2,7 +2,6 @@
class SettingsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*

View File

@ -10,6 +10,7 @@ class IsSetupFilter
return Redirect::to('/dashboard');
}
} catch (Exception $e) {
// do nothing
}
}
}