Skip to content

Commit

Permalink
typo fix saving client_id as integer not as json
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoray committed Dec 22, 2017
1 parent 5592cfc commit 599d6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_harvest_projects_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class CreateHarvestProjectsTable extends Migration
Schema::create($tableName, function (Blueprint $table) {
$table->increments('id');
$table->integer('external_id');
$table->json('client_id');
$table->integer('client_id');
$table->string('name');
$table->string('code');
$table->boolean('is_active');
Expand Down

0 comments on commit 599d6f0

Please sign in to comment.