increments('id'); $table->string('name', 50); $table->string('author', 80)->nullable(); $table->string('genre', 50)->nullable(); $table->tinyInteger('quantity')->unsigned(); $table->decimal('cost', 6, 2); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('films'); } }