blessing-skin-server/database/migrations/2020_03_10_145738_lengthen_ip_field.php
2020-03-10 14:59:50 +08:00

23 lines
498 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class LengthenIpField extends Migration
{
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('ip', 45)->change();
});
}
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->string('ip', 39)->change();
});
}
}