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

33 lines
592 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
class AddWarranteeToAssetsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
Schema::table('assets', function ($table) {
$table->integer('warrantee_months')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
Schema::table('assets', function ($table) {
$table->dropColumn('warrantee_months');
});
}
}