change notes & description column type

This commit is contained in:
raishvaria
2020-12-08 12:55:28 +05:30
parent e222af335e
commit d2e11bd7df
6 changed files with 53 additions and 7 deletions

View File

@ -0,0 +1,46 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class ChangeDescriptionAndNotesColumnType extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('estimates', function (Blueprint $table) {
$table->text('notes')->nullable()->change();
});
Schema::table('expenses', function (Blueprint $table) {
$table->text('notes')->nullable()->change();
});
Schema::table('estimate_items', function (Blueprint $table) {
$table->text('description')->nullable()->change();
});
Schema::table('invoice_items', function (Blueprint $table) {
$table->text('description')->nullable()->change();
});
Schema::table('items', function (Blueprint $table) {
$table->text('description')->nullable()->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}