update migration

This commit is contained in:
Jack Goh
2018-08-02 11:17:13 +08:00
parent bc34983d6d
commit 3302d5cb65
4 changed files with 4 additions and 4 deletions
@@ -15,7 +15,7 @@ class AddBillingFieldToSupplierbookingTable extends Migration
{
Schema::table('supplier_bookings', function($table)
{
$table->double('billing_amount');
$table->double('billing_amount')->nullable();
});
}
@@ -15,7 +15,7 @@ class AddSalestaxFieldToSupplierbookingTable extends Migration
{
Schema::table('supplier_bookings', function($table)
{
$table->double('salestax_amount');
$table->double('salestax_amount')->nullable();
});
}
@@ -15,7 +15,7 @@ class AddNameInUsersTable extends Migration
{
Schema::table('users', function($table)
{
$table->string('name');
$table->string('name')->nullable();
});
}
@@ -15,7 +15,7 @@ class AddOrdernoNPaymentforFieldToBookingsTable extends Migration
{
Schema::table('bookings', function (Blueprint $table) {
$table->string('order_no')->nullable();
$table->string('payment_for');
$table->string('payment_for')->nullable();
});
}