This commit is contained in:
denisdulici
2017-10-21 14:23:57 +03:00
parent 07ef2dad8a
commit 5e7d3392ab
26 changed files with 177 additions and 57 deletions

View File

@ -18,8 +18,8 @@ class CreateItemsTable extends Migration
$table->string('name');
$table->string('sku');
$table->text('description')->nullable();
$table->float('sale_price', 15, 4);
$table->float('purchase_price', 15, 4);
$table->double('sale_price', 15, 4);
$table->double('purchase_price', 15, 4);
$table->integer('quantity');
$table->integer('category_id')->nullable();
$table->integer('tax_id')->nullable();