string('module')->default(0); }); } public function down() { if (!Schema::hasTable(self::TABLE_NAME) || !Schema::hasColumn(self::TABLE_NAME, 'module')) { return; } Schema::table(self::TABLE_NAME, function (Blueprint $obTable) { $obTable->dropColumn(['module']); }); } }