id(); $table->timestamp("created_at")->default(\Illuminate\Support\Facades\DB::raw('CURRENT_TIMESTAMP')); $table->smallInteger("year"); $table->tinyInteger("month"); $table->tinyInteger("day"); $table->tinyInteger("hour"); $table->unsignedBigInteger("image"); $table->unsignedBigInteger("gallery"); $table->unsignedBigInteger("tenant"); $table->enum("typ", ["Access", "Cache"]); $table->integer("size"); $table->foreign('image')->references('id')->on('images'); $table->foreign('gallery')->references('id')->on('galleries'); $table->foreign('tenant')->references('id')->on('tenants'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists("access"); } }