Skip to content

Commit

Permalink
Fix Wrong Columns Assignation
Browse files Browse the repository at this point in the history
  • Loading branch information
Blair2004 committed Jan 26, 2022
1 parent 1f73bde commit 6444a31
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public function up()
Schema::createIfMissing( 'nexopos_orders_payments', function( Blueprint $table ) {
$table->bigIncrements( 'id' );
$table->integer( 'order_id' );
$table->integer( 'priority' )->default(0);
$table->float( 'value', 18, 5 )->default(0);
$table->integer( 'author' );
$table->string( 'identifier' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public function up()
$table->id();
$table->string( 'label' );
$table->string( 'identifier' );
$table->integer( 'priority' )->default(0);
$table->text( 'description' )->nullable();
$table->integer( 'author' );
$table->boolean( 'active' )->default( true );
Expand Down

0 comments on commit 6444a31

Please sign in to comment.