2015-08-30 14:29:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
2015-08-31 14:35:47 +02:00
|
|
|
class CreateFollowers extends Migration
|
|
|
|
{
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('followers', function ($table) {
|
|
|
|
$table->increments('id');
|
|
|
|
$table->integer('user_id')->unsigned()->index();
|
2015-08-30 14:29:12 +02:00
|
|
|
|
2015-08-31 14:35:47 +02:00
|
|
|
$table->integer('artist_id')->unsigned()->nullable()->index();
|
|
|
|
$table->integer('playlist_id')->unsigned()->nullable()->index();
|
2015-08-30 14:29:12 +02:00
|
|
|
|
2015-08-31 14:35:47 +02:00
|
|
|
$table->timestamp('created_at');
|
2015-08-30 14:29:12 +02:00
|
|
|
|
2015-08-31 14:35:47 +02:00
|
|
|
$table->foreign('user_id')->references('id')->on('users')->on_delete('cascade');
|
|
|
|
$table->foreign('artist_id')->references('id')->on('users')->on_delete('cascade');
|
|
|
|
$table->foreign('playlist_id')->references('id')->on('playlists');
|
|
|
|
});
|
|
|
|
}
|
2015-08-30 14:29:12 +02:00
|
|
|
|
2015-08-31 14:35:47 +02:00
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::drop('followers');
|
|
|
|
}
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|