Created
August 16, 2020 15:18
-
-
Save parzibyte/f1bcfab2fb2b7796a65af9deab049155 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Run the migrations. | |
* | |
* @return void | |
*/ | |
public function up() | |
{ | |
Schema::table('products', function (Blueprint $table) { | |
DB::statement("ALTER TABLE products MODIFY description LONGTEXT"); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment