mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
35 lines
550 B
PHP
35 lines
550 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class Image extends Migration {
|
|
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('assets', function(Blueprint $table)
|
|
{
|
|
$table->text('image')->after('notes')->nullable()->default(NULL);
|
|
//
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('assets', function ($table) {
|
|
$table->dropColumn('image');
|
|
});
|
|
}
|
|
|
|
}
|