mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-01-31 11:16:42 +01:00
40 lines
992 B
PHP
40 lines
992 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
||
|
class AddTrackSourceColumn extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
Schema::table('tracks', function(Blueprint $table){
|
||
|
$table->string('source', 40)->default('direct_upload');
|
||
|
});
|
||
|
|
||
|
// Mark MLPMA tracks retroactively
|
||
|
// --> The default value in the database, set above, will
|
||
|
// be used automatically for all non-MLPMA tracks.
|
||
|
$tracks = DB::table('tracks')
|
||
|
->join('mlpma_tracks', 'mlpma_tracks.track_id', '=', 'tracks.id');
|
||
|
|
||
|
$tracks->whereNotNull('mlpma_tracks.id')->update(['source' => 'mlpma']);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
Schema::table('tracks', function(Blueprint $table){
|
||
|
$table->dropColumn('source');
|
||
|
});
|
||
|
}
|
||
|
}
|