Pony.fm/database/migrations/2013_08_18_045248_create_favourites.php

56 lines
2 KiB
PHP
Raw Normal View History

2015-08-30 14:29:12 +02:00
<?php
/**
* Pony.fm - A community for pony fan music.
* Copyright (C) 2015 Peter Deltchev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2015-08-31 14:35:47 +02:00
use Illuminate\Database\Migrations\Migration;
2015-08-30 14:29:12 +02:00
2015-08-31 14:35:47 +02:00
class CreateFavourites extends Migration
{
public function up()
{
Schema::create('favourites', 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('track_id')->unsigned()->nullable()->index();
$table->integer('album_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('track_id')->references('id')->on('tracks');
$table->foreign('album_id')->references('id')->on('albums');
$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::table('favourites', function ($table) {
$table->dropForeign('favourites_user_id_foreign');
$table->dropForeign('favourites_track_id_foreign');
$table->dropForeign('favourites_album_id_foreign');
$table->dropForeign('favourites_playlist_id_foreign');
});
2015-08-30 14:29:12 +02:00
2015-08-31 14:35:47 +02:00
Schema::drop('favourites');
}
}