mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
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…
x
Reference in New Issue
Block a user