c3lf-system-3/database/migrations/2020_01_18_212520_cleanup_tables.php

37 lines
758 B
PHP
Raw Normal View History

2020-01-18 20:37:02 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CleanupTables extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('items', function (Blueprint $table) {
$table->dropColumn('wo');
});
Schema::table('items', function (Blueprint $table) {
$table->dropColumn('wann');
});
Schema::table('items', function (Blueprint $table) {
$table->renameColumn('item_uid','uid');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}