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

View File

@@ -22,7 +22,7 @@ class CreateComponentGroupsTable extends Migration
{
Schema::create('component_groups', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('name');
$table->timestamps();

View File

@@ -22,7 +22,7 @@ class CreateComponentsTable extends Migration
{
Schema::create('components', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('name');
$table->text('description');

View File

@@ -22,7 +22,7 @@ class CreateIncidentTemplatesTable extends Migration
{
Schema::create('incident_templates', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('name');
$table->string('slug');

View File

@@ -22,7 +22,7 @@ class CreateIncidentsTable extends Migration
{
Schema::create('incidents', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->integer('component_id')->default(0);
$table->string('name');

View File

@@ -22,7 +22,7 @@ class CreateMetricPointsTable extends Migration
{
Schema::create('metric_points', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->integer('metric_id');
$table->decimal('value', 10, 3);

View File

@@ -22,7 +22,7 @@ class CreateMetricsTable extends Migration
{
Schema::create('metrics', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('name');
$table->string('suffix');

View File

@@ -22,7 +22,7 @@ class CreateSettingsTable extends Migration
{
Schema::create('settings', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('name');
$table->longText('value');

View File

@@ -22,7 +22,7 @@ class CreateSubscribersTable extends Migration
{
Schema::create('subscribers', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('email');
$table->string('verify_code');

View File

@@ -22,7 +22,7 @@ class CreateUsersTable extends Migration
{
Schema::create('users', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('username');
$table->string('password');

View File

@@ -22,7 +22,7 @@ class CreateTagsTable extends Migration
{
Schema::create('tags', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('name');
$table->string('slug');

View File

@@ -22,7 +22,7 @@ class CreateComponentTagTable extends Migration
{
Schema::create('component_tag', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->integer('component_id');
$table->integer('tag_id');

View File

@@ -21,7 +21,7 @@ class CreateJobsTable extends Migration
{
Schema::create('jobs', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->bigIncrements('id');
$table->string('queue');
$table->text('payload');

View File

@@ -21,7 +21,7 @@ class CreateFailedJobsTable extends Migration
{
Schema::create('failed_jobs', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->text('connection');
$table->text('queue');