*/ abstract class Migration extends BasicMigration { const MAXIMAL_TITLE_SIZE = 1024; public function addContentFields(Blueprint $table) { $table->tinyInteger('status')->default(Content::STATUS_DRAFT); $table->string('title', self::MAXIMAL_TITLE_SIZE); $table->text('keywords'); $table->text('description'); $table->mediumText('body'); } }