Skip to content

Commit

Permalink
set column size explicit in pireps table
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio committed Dec 13, 2017
1 parent 1ad60f5 commit a3027e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/migrations/2017_06_28_195426_create_pirep_tables.php
Expand Up @@ -27,8 +27,8 @@ public function up()
$table->unsignedDecimal('flight_time', 19);
$table->unsignedDecimal('gross_weight', 19)->nullable();
$table->unsignedDecimal('fuel_used', 19)->nullable();
$table->string('route')->nullable();
$table->string('notes')->nullable();
$table->string('route', 250)->nullable();
$table->string('notes', 250)->nullable();
$table->unsignedTinyInteger('source')->default(0);
$table->tinyInteger('status')->default(0); # -1 rejected, 0 pending, 1 accepted
$table->longText('raw_data')->nullable();
Expand Down

0 comments on commit a3027e4

Please sign in to comment.