<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
class v210 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('websites', function (Blueprint $table) {
$table->text('password')->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}