mirror of
https://github.com/flarum/framework.git
synced 2025-02-02 02:55:31 +08:00
Add discussion_id foreign key to posts table
This commit is contained in:
parent
75e624d7ca
commit
f7feea496d
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Schema\Builder;
|
||||
|
||||
return [
|
||||
'up' => function (Builder $schema) {
|
||||
// Delete rows with non-existent entities so that we will be able to create
|
||||
// foreign keys without any issues.
|
||||
$connection = $schema->getConnection();
|
||||
$connection->table('posts')
|
||||
->orWhereNotExists(function ($query) {
|
||||
$query->selectRaw(1)->from('discussions')->whereColumn('id', 'discussion_id');
|
||||
})
|
||||
->delete();
|
||||
|
||||
|
||||
$schema->table('posts', function (Blueprint $table) {
|
||||
$table->foreign('discussion_id')->references('id')->on('discussions')->onDelete('cascade');
|
||||
});
|
||||
},
|
||||
|
||||
'down' => function (Builder $schema) {
|
||||
$schema->table('posts', function (Blueprint $table) {
|
||||
$table->dropForeign(['discussion_id']);
|
||||
});
|
||||
}
|
||||
];
|
Loading…
Reference in New Issue
Block a user