31 lines
605 B
PHP
31 lines
605 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class AlterWarrantyColumnOnAssets extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('assets', function ($table) {
|
|
$table->renameColumn('warrantee_months', 'warranty_months');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('assets', function ($table) {
|
|
$table->renameColumn('warranty_months', 'warrantee_months');
|
|
});
|
|
}
|
|
}
|