c3lf-system-3/database/migrations/2019_12_24_134319_delete_id_on_file.php

32 lines
558 B
PHP
Raw Normal View History

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class DeleteIdOnFile extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('files', function (Blueprint $table) {
$table->dropColumn('id');
$table->primary('hash');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}