Skip to content

Commit

Permalink
Fix pirep status column
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio committed Dec 12, 2017
1 parent c543b00 commit e75e2a0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,7 +30,7 @@ public function up()
$table->string('route')->nullable();
$table->string('notes')->nullable();
$table->unsignedTinyInteger('source')->default(0);
$table->unsignedTinyInteger('status')->default(0);
$table->tinyInteger('status')->default(0); # -1 rejected, 0 pending, 1 accepted
$table->longText('raw_data')->nullable();
$table->timestamps();
$table->softDeletes();
Expand Down

0 comments on commit e75e2a0

Please sign in to comment.