parent
3cac52afd4
commit
010cd403f5
|
|
@ -4,7 +4,6 @@ use October\Rain\Database\Updates\Migration;
|
|||
|
||||
class DbSystemPluginHistory extends Migration
|
||||
{
|
||||
|
||||
public function up()
|
||||
{
|
||||
Schema::create('system_plugin_history', function ($table) {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
use October\Rain\Database\Updates\Migration;
|
||||
|
||||
class DbSystemPluginHistoryDetailText extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::table('system_plugin_history', function ($table) {
|
||||
$table->text('detail')->nullable()->change();
|
||||
});
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
Schema::table('system_plugin_history', function ($table) {
|
||||
$table->string('detail')->nullable()->change();
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue