Files
Docker/Productivite/Snipe-IT/database/migrations/2013_11_25_104343_alter_warranty_column_on_assets.php
2024-04-21 14:42:52 +02:00

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');
});
}
}