integer('id', true); $table->string('name', 30)->nullable(); $table->string('title', 50)->nullable(); $table->text('value', 65535)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('widgets'); } };