gurl_o/plugins/janvince/smallcontactform/updates/scf_tables_06.php

29 lines
664 B
PHP
Raw Normal View History

2023-07-23 05:57:06 +00:00
<?php
namespace JanVince\SmallContactForm\Updates;
use Schema;
use October\Rain\Database\Updates\Migration;
class SmallContactFormTables_06 extends Migration
{
public function up()
{
Schema::table('janvince_smallcontactform_messages', function($table)
{
$table->text('form_notes', 2000)->nullable();
});
}
public function down()
{
if (Schema::hasColumn('janvince_smallcontactform_messages', 'form_notes'))
{
Schema::table('janvince_smallcontactform_messages', function($table)
{
$table->dropColumn('form_notes');
});
}
}
}