diff --git a/modules/system/database/migrations/2013_10_01_000004_Db_System_Plugin_History.php b/modules/system/database/migrations/2013_10_01_000004_Db_System_Plugin_History.php index 812c9f5ac..94cc4a0f3 100644 --- a/modules/system/database/migrations/2013_10_01_000004_Db_System_Plugin_History.php +++ b/modules/system/database/migrations/2013_10_01_000004_Db_System_Plugin_History.php @@ -4,7 +4,6 @@ use October\Rain\Database\Updates\Migration; class DbSystemPluginHistory extends Migration { - public function up() { Schema::create('system_plugin_history', function ($table) { diff --git a/modules/system/database/migrations/2016_10_01_000019_Db_System_Plugin_History_Detail_Text.php b/modules/system/database/migrations/2016_10_01_000019_Db_System_Plugin_History_Detail_Text.php new file mode 100644 index 000000000..247694d15 --- /dev/null +++ b/modules/system/database/migrations/2016_10_01_000019_Db_System_Plugin_History_Detail_Text.php @@ -0,0 +1,20 @@ +text('detail')->nullable()->change(); + }); + } + + public function down() + { + Schema::table('system_plugin_history', function ($table) { + $table->string('detail')->nullable()->change(); + }); + } +}