diff --git a/backend/laravel.php b/backend/laravel.php index f6e5568..47aee22 100644 --- a/backend/laravel.php +++ b/backend/laravel.php @@ -262,6 +262,16 @@ uuid // The field under validation must be a v * https://laravel.com/docs/5.8/errors ********************************************************************************************/ +/******************************************************************************************** + * COLLECTION TABLE OPTIONS + * https://laravel.com/docs/5.7/migrations#creating-tables + ********************************************************************************************/ + +$table->engine = 'InnoDB'; // Specify the table storage engine (MySQL). +$table->charset = 'utf8'; // Specify a default character set for the table (MySQL). +$table->collation = 'utf8_unicode_ci'; // Specify a default collation for the table (MySQL). +$table->temporary(); // Create a temporary table (except SQL Server). + /******************************************************************************************** * COLLECTION COLUMN TYPES * https://laravel.com/docs/5.8/migrations#generating-migrations