not dropping old tables
This commit is contained in:
parent
b7e1766f50
commit
f847e24baa
@ -383,7 +383,7 @@ class Version200 extends Listener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DB::table('customers')->delete();
|
Schema::drop('customers');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function copyVendors()
|
public function copyVendors()
|
||||||
@ -409,7 +409,7 @@ class Version200 extends Listener
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
DB::table('vendors')->delete();
|
Schema::drop('vendors');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function copyTransactions()
|
public function copyTransactions()
|
||||||
@ -464,7 +464,7 @@ class Version200 extends Listener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DB::table('invoice_payments')->delete();
|
Schema::drop('invoice_payments');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function copyRevenues()
|
public function copyRevenues()
|
||||||
@ -533,7 +533,7 @@ class Version200 extends Listener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DB::table('revenues')->delete();
|
Schema::drop('revenues');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function copyBillPayments()
|
public function copyBillPayments()
|
||||||
@ -577,7 +577,7 @@ class Version200 extends Listener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DB::table('bill_payments')->delete();
|
Schema::drop('bill_payments');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function copyPayments()
|
public function copyPayments()
|
||||||
@ -654,7 +654,7 @@ class Version200 extends Listener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DB::table('payments')->delete();
|
Schema::drop('payments');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function updateInvoices()
|
public function updateInvoices()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user