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

29 lines
462 B
PHP

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