Skip to content

Commit

Permalink
Remove the engine specification (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald authored Dec 5, 2023
1 parent e65fbbe commit 2487643
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions database/migrations/2023_06_07_000001_create_pulse_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public function up(): void
$connection = DB::connection($this->getConnection());

Schema::create('pulse_values', function (Blueprint $table) use ($connection) {
$table->engine = 'InnoDB';
$table->id();
$table->unsignedInteger('timestamp');
$table->string('type');
Expand All @@ -42,7 +41,6 @@ public function up(): void
});

Schema::create('pulse_entries', function (Blueprint $table) use ($connection) {
$table->engine = 'InnoDB';
$table->id();
$table->unsignedInteger('timestamp');
$table->string('type');
Expand All @@ -61,7 +59,6 @@ public function up(): void
});

Schema::create('pulse_aggregates', function (Blueprint $table) use ($connection) {
$table->engine = 'InnoDB';
$table->id();
$table->unsignedInteger('bucket');
$table->unsignedMediumInteger('period');
Expand Down

0 comments on commit 2487643

Please sign in to comment.