Fix spacing issue.

This commit is contained in:
Chase Coney
2015-06-30 11:35:34 -05:00
parent 04161678b6
commit 977cac091c
13 changed files with 13 additions and 13 deletions
@@ -22,7 +22,7 @@ class CreateComponentGroupsTable extends Migration
{ {
Schema::create('component_groups', function (Blueprint $table) { Schema::create('component_groups', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->string('name'); $table->string('name');
$table->timestamps(); $table->timestamps();
@@ -22,7 +22,7 @@ class CreateComponentsTable extends Migration
{ {
Schema::create('components', function (Blueprint $table) { Schema::create('components', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->string('name'); $table->string('name');
$table->text('description'); $table->text('description');
@@ -22,7 +22,7 @@ class CreateIncidentTemplatesTable extends Migration
{ {
Schema::create('incident_templates', function (Blueprint $table) { Schema::create('incident_templates', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->string('name'); $table->string('name');
$table->string('slug'); $table->string('slug');
@@ -22,7 +22,7 @@ class CreateIncidentsTable extends Migration
{ {
Schema::create('incidents', function (Blueprint $table) { Schema::create('incidents', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->integer('component_id')->default(0); $table->integer('component_id')->default(0);
$table->string('name'); $table->string('name');
@@ -22,7 +22,7 @@ class CreateMetricPointsTable extends Migration
{ {
Schema::create('metric_points', function (Blueprint $table) { Schema::create('metric_points', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->integer('metric_id'); $table->integer('metric_id');
$table->decimal('value', 10, 3); $table->decimal('value', 10, 3);
@@ -22,7 +22,7 @@ class CreateMetricsTable extends Migration
{ {
Schema::create('metrics', function (Blueprint $table) { Schema::create('metrics', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->string('name'); $table->string('name');
$table->string('suffix'); $table->string('suffix');
@@ -22,7 +22,7 @@ class CreateSettingsTable extends Migration
{ {
Schema::create('settings', function (Blueprint $table) { Schema::create('settings', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->string('name'); $table->string('name');
$table->longText('value'); $table->longText('value');
@@ -22,7 +22,7 @@ class CreateSubscribersTable extends Migration
{ {
Schema::create('subscribers', function (Blueprint $table) { Schema::create('subscribers', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->string('email'); $table->string('email');
$table->string('verify_code'); $table->string('verify_code');
@@ -22,7 +22,7 @@ class CreateUsersTable extends Migration
{ {
Schema::create('users', function (Blueprint $table) { Schema::create('users', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->string('username'); $table->string('username');
$table->string('password'); $table->string('password');
@@ -22,7 +22,7 @@ class CreateTagsTable extends Migration
{ {
Schema::create('tags', function (Blueprint $table) { Schema::create('tags', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->string('name'); $table->string('name');
$table->string('slug'); $table->string('slug');
@@ -22,7 +22,7 @@ class CreateComponentTagTable extends Migration
{ {
Schema::create('component_tag', function (Blueprint $table) { Schema::create('component_tag', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->integer('component_id'); $table->integer('component_id');
$table->integer('tag_id'); $table->integer('tag_id');
@@ -21,7 +21,7 @@ class CreateJobsTable extends Migration
{ {
Schema::create('jobs', function (Blueprint $table) { Schema::create('jobs', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->bigIncrements('id'); $table->bigIncrements('id');
$table->string('queue'); $table->string('queue');
$table->text('payload'); $table->text('payload');
@@ -21,7 +21,7 @@ class CreateFailedJobsTable extends Migration
{ {
Schema::create('failed_jobs', function (Blueprint $table) { Schema::create('failed_jobs', function (Blueprint $table) {
$table->engine = 'InnoDB'; $table->engine = 'InnoDB';
$table->increments('id'); $table->increments('id');
$table->text('connection'); $table->text('connection');
$table->text('queue'); $table->text('queue');