mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
New field for #122
This commit is contained in:
parent
f9de65c035
commit
3dce5e162f
@ -26,6 +26,14 @@ class ChangesForV380 extends Migration
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
|
||||
// extend transaction journals:
|
||||
Schema::table(
|
||||
'transaction_journals', function (Blueprint $table) {
|
||||
$table->date('process_date')->nullable()->after('book_date');
|
||||
}
|
||||
);
|
||||
|
||||
// new table "export_jobs"
|
||||
Schema::create(
|
||||
'export_jobs', function (Blueprint $table) {
|
||||
|
Loading…
Reference in New Issue
Block a user