??????????????
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Artistschange extends Model
{
    public function old_artist(){
        return $this->hasOne('App\Artist', 'id', 'artist_old_id');
    }
    public function new_artist(){
        return $this->hasOne('App\Artist', 'id', 'artist_ne