Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/database/migrations/2021_08_15_193705_add_foreign_keys_to_feed_feed_items_table.php
2022-01-12 00:35:37 +01:00

35 lines
920 B
PHP
Executable File

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddForeignKeysToFeedFeedItemsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('feed_feed_items', function (Blueprint $table) {
$table->foreign('feed_id')->references('id')->on('feeds')->onDelete('CASCADE');
$table->foreign('feed_item_id')->references('id')->on('feed_items')->onDelete('CASCADE');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('feed_feed_items', function (Blueprint $table) {
$table->dropForeign('feed_feed_items_feed_id_foreign');
$table->dropForeign('feed_feed_items_feed_item_id_foreign');
});
}
}