Skip to content

Commit

Permalink
Extended order type to 16 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Mar 15, 2018
1 parent ff6c7f3 commit 501b948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mshoplib/setup/default/schema/order.php
Expand Up @@ -258,7 +258,7 @@
$table->addColumn( 'id', 'bigint', array( 'autoincrement' => true ) );
$table->addColumn( 'baseid', 'bigint', [] );
$table->addColumn( 'siteid', 'integer', array( 'notnull' => false ) );
$table->addColumn( 'type', 'string', array( 'length' => 8 ) );
$table->addColumn( 'type', 'string', array( 'length' => 16 ) );
$table->addColumn( 'datepayment', 'datetime', array( 'notnull' => false ) );
$table->addColumn( 'datedelivery', 'datetime', array( 'notnull' => false ) );
$table->addColumn( 'statuspayment', 'smallint', array( 'default' => -1 ) );
Expand Down

0 comments on commit 501b948

Please sign in to comment.