increments('id'); $table->string('name')->nullable(false); $table->string('suffix')->nullable(false); $table->string('description')->nullable(false); $table->boolean('display_chart')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('metrics'); } }