From c756b809624e7c6515e523a6a77965f9d6285e6d Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 29 Dec 2016 18:01:06 +0100 Subject: [PATCH] These are changes to budget limit. FF must work with them. --- database/migrations/2016_12_28_203205_changes_for_v431.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/database/migrations/2016_12_28_203205_changes_for_v431.php b/database/migrations/2016_12_28_203205_changes_for_v431.php index 407e82c844..671104f8ed 100644 --- a/database/migrations/2016_12_28_203205_changes_for_v431.php +++ b/database/migrations/2016_12_28_203205_changes_for_v431.php @@ -44,6 +44,8 @@ class ChangesForV431 extends Migration 'budget_limits', function (Blueprint $table) { $table->renameColumn('startdate', 'start_date'); $table->date('end_date'); + $table->dropColumn('repeat_freq'); + $table->dropColumn('repeats'); } ); }