engine = 'InnoDB'; $table->increments('id'); $table->string('number')->nullable(); $table->integer('author_id')->unsigned()->index()->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('database_tester_phones'); } }