<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
use IlluminateSupportFacadesDB;
class V110 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::table('settings')->insert(
[
[
'name' => 'cdn_url',
'value' => ''
]
]
);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}