id(); $table->string('name'); $table->integer('get_type'); $table->text('description')->nullable(); $table->string('image_large')->nullable(); $table->string('image_small')->nullable(); $table->integer('price')->default(0); $table->integer('duration')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('medals'); } }