Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 16, 2020 15:18
Show Gist options
  • Save parzibyte/f1bcfab2fb2b7796a65af9deab049155 to your computer and use it in GitHub Desktop.
Save parzibyte/f1bcfab2fb2b7796a65af9deab049155 to your computer and use it in GitHub Desktop.
<?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