]> BookStack Code Mirror - bookstack/blob - database/migrations/2017_07_02_152834_update_db_encoding_to_ut8mb4.php
5681013ade7a7f4aa99e3a6f53d94703ffef71d5
[bookstack] / database / migrations / 2017_07_02_152834_update_db_encoding_to_ut8mb4.php
1 <?php
2
3 use Illuminate\Database\Migrations\Migration;
4
5 class UpdateDbEncodingToUt8mb4 extends Migration
6 {
7     /**
8      * Run the migrations.
9      *
10      * @return void
11      */
12     public function up()
13     {
14         // Migration removed due to issues during live migration.
15         // Instead you can run the command `artisan bookstack:db-utf8mb4`
16         // which will generate out the SQL request to upgrade your DB to utf8mb4.
17     }
18
19     /**
20      * Reverse the migrations.
21      *
22      * @return void
23      */
24     public function down()
25     {
26         //
27     }
28 }