Files
Docker/SNIPE-IT/database/migrations/2014_10_16_200626_add_rtd_location_to_assets.php
2024-04-17 20:22:30 +02:00

34 lines
644 B
PHP

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