mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Derp. Not a string.
This commit is contained in:
parent
08c7701f17
commit
5c70898dbf
|
@ -13,27 +13,27 @@ class IncreasePurchaseCostSize extends Migration
|
|||
public function up()
|
||||
{
|
||||
Schema::table('assets', function ($table) {
|
||||
$table->string('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('accessories', function ($table) {
|
||||
$table->string('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('asset_maintenances', function ($table) {
|
||||
$table->string('cost', 20, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('cost', 20, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('components', function ($table) {
|
||||
$table->string('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('consumables', function ($table) {
|
||||
$table->string('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('licenses', function ($table) {
|
||||
$table->string('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 20, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
}
|
||||
|
@ -46,27 +46,27 @@ class IncreasePurchaseCostSize extends Migration
|
|||
public function down()
|
||||
{
|
||||
Schema::table('assets', function ($table) {
|
||||
$table->string('purchase_cost', 8, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 8, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('accessories', function ($table) {
|
||||
$table->string('purchase_cost', 13, 4)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 13, 4)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('asset_maintenances', function ($table) {
|
||||
$table->string('cost', 10, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('cost', 10, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('components', function ($table) {
|
||||
$table->string('purchase_cost', 13, 4)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 13, 4)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('consumables', function ($table) {
|
||||
$table->string('purchase_cost', 13, 4)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 13, 4)->nullable()->default(null)->change();
|
||||
});
|
||||
|
||||
Schema::table('licenses', function ($table) {
|
||||
$table->string('purchase_cost', 8, 2)->nullable()->default(null)->change();
|
||||
$table->decimal('purchase_cost', 8, 2)->nullable()->default(null)->change();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue