mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
build version 201
This commit is contained in:
@ -68,13 +68,16 @@ class Version201 extends Listener
|
|||||||
\Schema::table('invoices', function (Blueprint $table) {
|
\Schema::table('invoices', function (Blueprint $table) {
|
||||||
$table->decimal('discount', 15, 2)->nullable()->change();
|
$table->decimal('discount', 15, 2)->nullable()->change();
|
||||||
});
|
});
|
||||||
|
|
||||||
\Schema::table('estimates', function (Blueprint $table) {
|
\Schema::table('estimates', function (Blueprint $table) {
|
||||||
$table->decimal('discount', 15, 2)->nullable()->change();
|
$table->decimal('discount', 15, 2)->nullable()->change();
|
||||||
});
|
});
|
||||||
|
|
||||||
\Schema::table('invoice_items', function (Blueprint $table) {
|
\Schema::table('invoice_items', function (Blueprint $table) {
|
||||||
$table->decimal('quantity', 15, 2)->change();
|
$table->decimal('quantity', 15, 2)->change();
|
||||||
$table->decimal('discount', 15, 2)->nullable()->change();
|
$table->decimal('discount', 15, 2)->nullable()->change();
|
||||||
});
|
});
|
||||||
|
|
||||||
\Schema::table('estimate_items', function (Blueprint $table) {
|
\Schema::table('estimate_items', function (Blueprint $table) {
|
||||||
$table->decimal('quantity', 15, 2)->change();
|
$table->decimal('quantity', 15, 2)->change();
|
||||||
$table->decimal('discount', 15, 2)->nullable()->change();
|
$table->decimal('discount', 15, 2)->nullable()->change();
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"/assets/js/app.js": "/assets/js/app.js?id=334224502420e0ff495c",
|
"/assets/js/app.js": "/assets/js/app.js?id=2a5cfd8271e10bd501dc",
|
||||||
"/assets/css/crater.css": "/assets/css/crater.css?id=108e3a8d009e7d38018c"
|
"/assets/css/crater.css": "/assets/css/crater.css?id=108e3a8d009e7d38018c"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user