id(); $table->timestamps(); $table->string('name'); $table->string('url'); $table->mediumText("description")->nullable(); $table->unsignedBigInteger("tenant"); $table->date("gallery_create_time")->default(\Illuminate\Support\Facades\DB::raw('CURRENT_DATE')); $table->foreign('tenant')->references('id')->on('tenants'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists("galleries"); } }