id(); $table->timestamps(); $table->smallInteger("year"); $table->tinyInteger("month"); $table->tinyInteger("day"); $table->tinyInteger("hour"); $table->date("date"); $table->unsignedBigInteger("tenant"); $table->unsignedBigInteger("gallery"); $table->bigInteger("size"); $table->foreign('gallery')->references('id')->on('galleries'); $table->foreign('tenant')->references('id')->on('tenants'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists("storage"); } }