engine = 'InnoDB'; $table->increments('id'); $table->integer('user_id')->unsigned()->nullable()->index(); $table->string('title')->nullable(); $table->string('slug')->index(); $table->text('excerpt')->nullable(); $table->longText('content')->nullable(); $table->longText('content_html')->nullable(); $table->timestamp('published_at')->nullable(); $table->boolean('published')->default(false); $table->timestamps(); }); } public function down() { \DB::statement('SET FOREIGN_KEY_CHECKS = 0'); Schema::dropIfExists('rainlab_blog_posts'); \DB::statement('SET FOREIGN_KEY_CHECKS = 1'); } }