increments('id'); $table->integer('from_id')->nullable(); $table->string('from_type', 225)->nullable(); $table->string('from_email', 50)->nullable(); $table->integer('to_id')->nullable(); $table->string('to_type', 225)->nullable(); $table->string('to_email', 50)->nullable(); $table->string('subject', 255)->nullable(); $table->text('message')->nullable(); $table->enum('folder', [])->nullable(); $table->enum('starred', [])->nullable(); $table->enum('readed', [])->nullable(); $table->mediumText('labels')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 255)->nullable(); $table->text('slug')->nullable(); $table->string('upload_folder', 100)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litepie_message_messages'); } }