diff options
| author | horus | 2020-09-18 20:11:29 +0200 |
|---|---|---|
| committer | horus | 2020-09-18 20:11:55 +0200 |
| commit | 709e6684cf28f8b3008db57f9e2807544da92b41 (patch) | |
| tree | 0039516c3c2834131e76edec5b6498ecda55c019 /database/migrations | |
| parent | d6c6ba3e35b32047a7520be9bf09c18c9a91bfe9 (diff) | |
| download | senpai-709e6684cf28f8b3008db57f9e2807544da92b41.tar.gz | |
fix database view
Diffstat (limited to 'database/migrations')
| -rw-r--r-- | database/migrations/2020_09_18_200839_fix_view_to_include_unaired.php | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/database/migrations/2020_09_18_200839_fix_view_to_include_unaired.php b/database/migrations/2020_09_18_200839_fix_view_to_include_unaired.php new file mode 100644 index 0000000..5f7e1a2 --- /dev/null +++ b/database/migrations/2020_09_18_200839_fix_view_to_include_unaired.php @@ -0,0 +1,96 @@ +<?php + +use Illuminate\Database\Migrations\Migration; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Support\Facades\Schema; + +class FixViewToIncludeUnaired extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::table('anime', function (Blueprint $table) { + DB::statement( + "CREATE OR REPLACE VIEW view_anime_index AS + SELECT DISTINCT + a.mal_id, + url, + image_url, + (CASE WHEN title_eng IS NOT NULL THEN title_eng + ELSE title_pref END) as title, + title_pref, + title_eng, + anime_type, + a.created_at, + a.updated_at, + episodes, + synopsis, + hashtag, + airing_status, + a.season_name, + a.season_year, + (SELECT score FROM stats as b WHERE b.mal_id = a.mal_id AND score IS NOT NULL ORDER BY created_at ASC LIMIT 1) as score_begin, + (SELECT score FROM stats as b WHERE b.mal_id = a.mal_id ORDER BY created_at DESC LIMIT 1) as score_today, + (SELECT watching FROM stats as b WHERE b.mal_id = a.mal_id ORDER BY created_at DESC LIMIT 1) as watching, + (SELECT members FROM stats as b WHERE b.mal_id = a.mal_id ORDER BY created_at DESC LIMIT 1) as members + FROM + anime as a + JOIN + stats as s ON a.mal_id = s.mal_id + ORDER BY + abs(score_today-score_begin) DESC, + airing_status ASC + ;" + ); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('anime', function (Blueprint $table) { + DB::statement( + "CREATE OR REPLACE VIEW view_anime_index AS + SELECT DISTINCT + a.mal_id, + url, + image_url, + (CASE WHEN title_eng IS NOT NULL THEN title_eng + ELSE title_pref END) as title, + title_pref, + title_eng, + anime_type, + a.created_at, + a.updated_at, + episodes, + synopsis, + hashtag, + airing_status, + a.season_name, + a.season_year, + (SELECT score FROM stats as b WHERE b.mal_id = a.mal_id AND score IS NOT NULL ORDER BY created_at ASC LIMIT 1) as score_begin, + (SELECT score FROM stats as b WHERE b.mal_id = a.mal_id ORDER BY created_at DESC LIMIT 1) as score_today, + (SELECT watching FROM stats as b WHERE b.mal_id = a.mal_id ORDER BY created_at DESC LIMIT 1) as watching, + (SELECT members FROM stats as b WHERE b.mal_id = a.mal_id ORDER BY created_at DESC LIMIT 1) as members + FROM + anime as a + JOIN + stats as s ON a.mal_id = s.mal_id + WHERE + score IS NOT null + ORDER BY + abs(score_today-score_begin) DESC, + airing_status ASC + ;" + ); + }); + } +} |
