diff --git a/database/migrations/2016_02_04_144117_changes_for_v380.php b/database/migrations/2016_02_04_144117_changes_for_v380.php index e6fe614ee7..1e8039cb78 100644 --- a/database/migrations/2016_02_04_144117_changes_for_v380.php +++ b/database/migrations/2016_02_04_144117_changes_for_v380.php @@ -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) {